Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6051631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:50:23+00:00 2026-05-23T07:50:23+00:00

Can anyone help me? This doesn’t seem to work: switch (parseInt(charCode)) { case (charCode

  • 0

Can anyone help me?

This doesn’t seem to work:

switch (parseInt(charCode))
    {
        case (charCode >= 65 && charCode <=90): //UPPERCASE
            alert("UP");
        break;

        case (charCode >= 97 && charCode <=122): //LOWERCASE
            alert("LO");
        break;

        case (charCode >= 48 && charCode <=57): //NNUMBERS
            alert("NUM");
        break


    }

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T07:50:24+00:00Added an answer on May 23, 2026 at 7:50 am

    [edit] Let’s add this disclaimer: this use of switch is considered EVIL or ABUSIVE. Some Disciples Of The Javascript also consider the use of ternaries as a major SIN. So beware of using them, because hell may await you, so the Gospel goes.

    You can use switch like this 1:

    switch (true) {
       case (parseInt(charCode) >= 65 && parseInt(charCode) <=90): //UPPERCASE
           alert("UP");
           break;
       case (parseInt(charCode) >= 97 && parseInt(charCode) <=122): //LOWERCASE
           alert("LO");
           break;
       case (parseInt(charCode) >= 48 && parseInt(charCode) <=57): //NNUMBERS
           alert("NUM");
           break;
       default: break
    }
    

    it’s pretty bulky. You don’t have to use parseInt if you derive charCode came from event.keyCode. If you need to use parseInt, don’t forget to provide the radix, or better still, use Number to convert to a number.

    Anyway using a ternary is an alternative for this:

    alert( charCode >= 65 && charCode <= 90 
            ? 'UP'
            : charCode >= 97 && charCode <= 122
            ? 'LO'
            : charCode >= 48 && charCode <= 57 
            ? 'NUM'
            : 'OTHER'
    );
    

    [edit] Let’s see if the following alternative can satisfy the church of Javascript Coders…

    Another alternative is using a RegExp with the character derived from the keyCode:

    var chr      = String.fromCharCode(charCode),
        alertval =    /[a-z]/.test(chr) ?  'LO'
                    : /[A-Z]/.test(chr) ?  'UP'
                    : /[0-9]/.test(chr) ?  'NUM'
                    : 'OTHER';
        alert(alertval);
    

    As a last alternative (man, javascript is so versatile!) I present:

    var check = String.fromCharCode(charCode)
                 .replace(/([a-z])|([A-Z])|([0-9])|(.+)/,
                    function(a,b,c,d) {
                      return b ? 'LO' : c ? 'UP' : d ? 'NUM' : 'OTH';
                 });
    

    1 some notes on that ‘trick’

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using document.GetElementById(thingieID) doesn't seem to work. Can anyone help this DOM newbie?
Can anyone help me trying to find out why this doesn't work. The brushes
Can anyone help in this php page navigation script switch on counting normal serial
Can anyone help me understand why this line doesn't create an image with a
Can anyone help with this... vector<unsigned int> *vVec = new vector<unsigned int>; vVec .reserve(frankReservedSpace);
Can anyone help convert this this actionscript to Objective-c? if(mcMain.y >= stage.stageHeight - mcMain.height)
Can anyone help me with this error? alt text http://abbeylegal.com/downloads/parsererror.jpg full image here It
Can anyone help me to do this in the right way?I mean.. like that
Can anyone help me getting started with this? We have a current keygen for
Can anyone help me with reversing this PHP page navigation? Current script setting shows

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.