Does anyone know how can I check whether a variable is a number or a string in javascript?
|
|
If you're dealing with literal notation, and not constructors, you can use typeof:.
If you're creating numbers and strings via a constructor, such as Perhaps a more foolproof method of checking the type would be to utilize the method found in underscore.js (annotated source can be found here),
This returns a boolean
|
|||||||||||||||||||||
|
|
Best way to do that is using isNaN + type casting: Updated all-in method:
EDIT: In case you need to handle
EDIT2 (updated) :
In case you need to handle
|
|||||||||||||||||
|
|
The best way I have found is to either check for a method on the string, i.e.:
or if you want to do something with the number check for a number property,
This is sort of like "duck typing", it's up to you which way makes the most sense. I don't have enough karma to comment, but typeof fails for boxed strings and numbers, i.e.:
will alert "object". |
|||||
|
|
Check if the value is a string literal or String object:
Unit test:
Checking for a number is similar:
|
|||
|
Try this,
|
||||
|
|
Or adapt it to return an unknown type:
May 12, 2012 Update: Full example at Javascript: A Better typeof. |
||||
|
|
You're looking for isNaN():
See JavaScript isNaN() Function at W3schools.com. |
|||||||||||||||||||
|
|
Best way to do this:
This satisfies the following test cases:
|
|||
|
|
|
uh, how about just:
|
|||
|
|
|
Errr? Just use regular expressions! :)
|
|||
|
|
|
Can you just divide it by 1? I assume the issue would be a string input like: "123ABG"
Just a way I did it recently. |
|||
|
|
|
the best way i found which also thinks of positive and negative numbers is from : O'Reilly Javascript and DHTML Cookbook :
} |
|||
|
|
|
since a string as '1234' with typeof will show 'string', and the inverse cannot ever happen (typeof 123 will always be number), the best is to use a simple regex
If you are looking for the real type, then typeof alone will do. |
||||
|
|
|
@BitOfUniverse's answer is good, and I come up with a new way:
I know |
||||
|
|
|
This solution resolves many of the issues raised here! This is by far the most reliable method I have used by far. I did not invent this, and cannot recall where I originally found it. But it works where other techniques fail:
Example of correctness
|
||||
|
|

