vote up 2 vote down star
2

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?

flag

50% accept rate

8 Answers

vote up 14 vote down check
num % 1 === 0

This will convert num to type Number first, so any value which can be converted to an integer will pass the test (e.g. '42', true).

If you want to exclude these, additionally check for

typeof num === 'number'

You could also use parseInt() to do this, ie

parseInt(num) == num

for an untyped check and

parseInt(num) === num

for a typed check.

Note that the tests are not equivalent: Checking via parseInt() will first convert to String, so eg true won't pass the check.

Also note that the untyped check via parseInt() will handle hexadecimal strings correctly, but will fail for octals (ie numeric strings with leading zero) as these are recognized by parseInt() but not by Number(). If you need to handle decimal strings with leading zeros, you'll have to specify the radix argument.

link|flag
This one does it, thank you. – jirkap Aug 24 at 16:56
vote up 2 vote down

You could use the formal definition of integer:

Math.floor(x) === x
link|flag
vote up 3 vote down

if (Math.floor(x) == x)

link|flag
vote up 5 vote down

Someone has already done it for you.

link|flag
As @Greg says above (stackoverflow.com/questions/1323314/…), this should include the radix parameter to parseInt. – bdukes Aug 24 at 16:50
vote up 1 vote down

Would this not work:

if (parseInt(number, 10) == number)
{
  alert(number + " is an integer.");
}
link|flag
1  
You should always include the radix parameter: parseInt(number, 10) – Greg Aug 24 at 16:27
Oops, yes. Fixed it. – paracycle Aug 24 at 16:45
@Greg: not necessarily - one might want hexadecimals to pass; octals will fail as they are recognized by parseInt() but not by Number() – Christoph Aug 24 at 16:55
vote up 0 vote down

you could either make use of javas parsing capabilities or as well try out the modulo operator %...

link|flag
vote up 2 vote down

How about this:

if((typeof(no)=='number') && (no.toString().indexOf('.')==-1))
link|flag
That won't work because 8.000 is still an integer. – Bears will eat you Aug 24 at 16:24
1  
That probably depends on your definition (and use case) of integer – bdukes Aug 24 at 16:48
Hmm. True. For inherently mathematical questions, I tend to think of them in terms of numbers and not numerals - hence, my comment above. – Bears will eat you Aug 24 at 16:53
vote up -1 vote down

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

link|flag
1  
Just from the name of the function, I would think "isNaN" would return true if val "is Not a Number", which is what NaN stands for. Typo? – Bears will eat you Aug 24 at 16:23
1  
isNaN(val) returns true if val is not a number, but it returns false for non-integer numbers as well so it won't solve the problem. – Amuck Aug 24 at 16:33

Your Answer

Get an OpenID
or

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