what seems to be a simple question turns out as a difficult task to me. I need this:
if (number == integer)
if (1.589 == integer) // false
if (2 == integer) // true
Any clues?
|
what seems to be a simple question turns out as a difficult task to me. I need this:
Any clues? |
|||
|
|
This will convert If you want to exclude these, additionally check for
You could also use
for an untyped check and
for a typed check. Note that the tests are not equivalent: Checking via Also note that the untyped check via |
||||
|
|
|
Someone has already done it for you. |
|||
|
|
How about this:
|
|||||||||||
|
|
you could either make use of javas parsing capabilities or as well try out the modulo operator %... |
|||
|
|
|
Would this not work:
|
|||||||||
|
|
This should do it:
For a given number value |
||||
|
|
|
There is a javascript function called isNaN(val) which returns true if val is not a number. If you want to use val as a number, you need to cast using parseInt() or parseFloat() EDIT: oops. Corrected the error as mentioned in the comment |
|||||||||
|