Hello, 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?
|
2
|
Hello, 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 |
|||
|
|
|
You could use the formal definition of integer:
|
||
|
|
|
|
if (Math.floor(x) == x) |
||
|
|
|
|
Someone has already done it for you. |
||
|
|
|
Would this not work:
|
||||||||
|
|
|
you could either make use of javas parsing capabilities or as well try out the modulo operator %... |
||
|
|
|
|
How about this:
|
||||||||
|
|
|
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 |
||||||||
|