I want to check to see if my input is a float.
Sooo something like...
if (typeof (input) == "float")
do something....
What is the proper way to do this?
|
I want to check to see if my input is a float. Sooo something like...
What is the proper way to do this? |
|||||
|
|
All numbers are floats in Javascript. Note that the type name is in quotes, it's a string, and it's all lower case. Also note that |
||||
|
|
|
As spraff said, you can check the type of an input with
JavaScript just has If it may be something else (like a string) but you want to convert it to a number if possible, you can use either
More: |
|||
|
|
|
Try
|
||||
|
|