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.

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)

share|improve this question
3  
== checks for value equality, === checks for value and type equality. "1" == 1 would be true, "1" === 1 would be false – Kai Dec 22 '10 at 23:22

4 Answers

up vote 29 down vote accepted

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.

(typeof foo === "number") && Math.floor(foo) === foo

If the variable might be a string containing an integer and you want to see if that is the case:

foo == parseInt(foo, 10)
share|improve this answer
2  
+1 this is better than my answer since it checks if the number is an integer as well. – Jason Hall Dec 22 '10 at 23:23
+1 agree w/ Jason; more thorough answer than ours. – Kai Dec 22 '10 at 23:27
2  
you can also use isNaN(foo) w3schools.com/jsref/jsref_NaN.asp instead of typeof – m4tt1mus Dec 22 '10 at 23:29
"it doesn't distinguish between different types of Number" That's because there are no different types of Number. All numeric values in JS are 64-bit floats. – NullUserException Oct 7 '12 at 6:54
@NullUserException — That's what I said. – Quentin Oct 7 '12 at 10:09
var a = 1;

if (typeof a == 'number') {
  // ...
}
share|improve this answer

A number is an integer if its modulo %1 is 0-

function isInt(n){
    return (typeof n== 'number' && n%1== 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

share|improve this answer

Try this code:

alert(typeof(1) == "number");

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.