How can I check if a variable is currently an integer type? I've looked for some sort of resource for this and I think the === operator is important, but I'm not sure how to check if a variable is an Integer (or an Array for that matter)
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
A variable will never be an integer type in JavaScript — it doesn't distinguish between different types of Number. You can test if the variable contains a number, and if that number is an integer.
If the variable might be a string containing an integer and you want to see if that is the case:
|
|||||||||||||||
|
|
A number is an integer if its modulo %1 is 0-
This is only as good as javascript gets- say +- ten to the 15th. isInt(Math.pow(2,50)+.1) returns true, as does Math.pow(2,50)+.1 == Math.pow(2,50) //true |
||||
|
|