I'm hoping there's something in the same conceptual space as the old VB6 IsNumeric() function?
|
3
|
|
|
|
|
|
To check to see if a variable is not a number:This works regardless of whether the variable contains is a string or number.
Examples:
Of course, you can negate this if you need to. For example, to implement the
To convert a string containing a number into a number:only works if the string only contains numeric characters, else it returns
Examples:
To convert a string loosely to a numberuseful for converting '12px' to 12, for example.
Examples:
FloatsBear in mind that, unlike
Empty stringsEmpty strings may be a little counter-intuitive.
But
|
||||||||||
|
|
|
Try the isNan function... |
||||||
|
|
|
(pasrseInt(value) === value) |
||
|
|
|
|
parseInt(), but be aware that this function is a bit different in the sense that it for example returns 100 for parseInt("100px"). |
||
|
|
|
|
And you could go the RegExp-way:
|
||
|
|
|
See this related question, which I asked some time ago. |
|||
|
