Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to find if a number is float or integer?

1.25 --> float  
1 --> integer  
0 --> integer  
0.25 --> float
share|improve this question
17  
I understand what you're asking here, but just to be clear: <nit-pick> JavaScript does not have different integer and float numeric types. Every number in JavaScript is just a Number. </nit-pick> – Matt Ball Oct 7 '10 at 21:01
1  
0.25 is an integer? – Task Jul 26 '11 at 13:38
let me correct it! thx – coure2011 Jul 31 '11 at 5:42
1  
Is Infinityan integer or a non-integer value as far as you're concerned? The answers here are pretty evenly distributed on this score. – Mike Samuel Mar 13 '12 at 7:07
-1 for wrong terminology. I think 1.0 is a float. – Sam Apr 9 at 10:18

17 Answers

up vote 210 down vote accepted

check a remainder when dividing by 1:

function isInt(n) {
   return n % 1 === 0;
}

If you don't know that the argument is a number-

function isInt(n) {
   return typeof n === 'number' && n % 1 == 0;
}

If you also want to include examples such as 1E308 is a float, and not an integer:

function isInt(n) {
   return typeof n === 'number' && parseFloat(n) == parseInt(n, 10) && !isNaN(n);
} // 6 characters
share|improve this answer
1  
simple n efficient solution. – coure2011 Oct 8 '10 at 14:06
10  
Careful, this will also return true for an empty string, a string representing an integral number, true, false, null, an empty array, an array containing a single integral number, an array containing a string representing an integral number, and maybe more. – Dagg Nabbit Oct 8 '10 at 16:53
I think your first implementation is brilliant and efficient and the second redundant. Right? – woods Nov 10 '11 at 11:33
Just to note, this method will work in most cases, but its not enough to assume that the converse (!isInt) implies a float. Try it against a very large number - !isInt(Number.MAX_VALUE-0.1)- it won't work. This is due to the use of modulo. The methods in the answer below this will work in all cases. – VLostBoy Mar 5 '12 at 13:22
Thanks, even if JavaScript does not differ between float and int, this is extremely useful for translation: unicode.org/repos/cldr-tmp/trunk/diff/supplemental/… – SimonSimCity Apr 10 '12 at 9:56
show 2 more comments

Try this.

function isFloat (n) {
  return n===+n && n!==(n|0);
}

function isInteger (n) {
  return n===+n && n===(n|0);
}
share|improve this answer
only works if a number is passed – John Hartsock Oct 7 '10 at 21:11
3  
heh awesom exploit, it's pretty much mine (n===+n to check for numeric, n|0 to round), but with built-in operators. funky – Claudiu Oct 7 '10 at 21:11
2  
@John Hartsock a string is never going to be a numeric value. It's a string. The point of this function is to test whether a value is a Javascript numeric value that has no fractional part and is within the size limits of what can be represented as an exact integer. If you want to check a string to see if it contains a sequence of characters that represent a number, you'd call parseFloat() first. – Pointy Oct 7 '10 at 21:23
@Pointy but parseFloat("1.1a") will still return 1.1. Suppose you had a text field you wanted to validate that it was an float and only a float without alpha characters. Testing weather a text field from an input element for decimal(float) – John Hartsock Oct 7 '10 at 21:28
2  
@John Hartsock: it won't return true unless a number primitive was passed. I think that makes sense given the names of the functions. Anything else should be a candidate for isString, isBoolean, etc. if such functions are being written. – Dagg Nabbit Oct 8 '10 at 2:43
show 2 more comments

Here are efficient functions that check if the value is a number or can be safely converted to a number:

function isNumber(value) {
    if ((undefined === value) || (null === value)) {
        return false;
    }
    if (typeof value == 'number') {
        return true;
    }
    return !isNaN(value - 0);
}

And for integers (would return false if the value is a float):

function isInteger(value) {
    if ((undefined === value) || (null === value)) {
        return false;
    }
    return value % 1 == 0;
}

The efficiency here is that parseInt (or parseNumber) are avoided when the value already is a number. Both parsing functions always convert to string first and then attempt to parse that string, which would be a waste if the value already is a number.

Thank you to the other posts here for providing further ideas for optimization!

share|improve this answer
This function fails on the empty string: isNumber('') is true. – user1200039 Apr 16 at 14:56

You can use a simple regular expression:

function isInt(value)
{
    var er = /^[0-9]+$/;

    return ( er.test(value) ) ? true : false;
}

Or you can use the below functions too, according your needs. They are developed by the PHPJS Project.

is_int() => Check if the variable type is Integer and if its content is Integer

is_float() => Check if the variable type is Float and if its content is Integer

ctype_digit() => Check if the variable type is String and if its content has only decimal digits

share|improve this answer

Why not something like this:

var isInt = function(n) { return parseInt(n) === n };
share|improve this answer

It really depends on what you want to achieve. If you want to "emulate" strongly typed languages then I suggest you not trying. As others mentioned all numbers have the same representation (the same type).

Using something like Claudiu provided:

isInteger( 1.0 ) -> true

which looks fine for common sense, but in something like C you would get false

share|improve this answer

THIS IS FINAL CODE FOR CHECK BOTH INT AND FLOAT

function isInt(n) { 
   if(typeof n == 'number' && Math.Round(n) % 1 == 0) {
       return true;
   } else {
       return false;
   }
} 

OR

function isInt(n) {   
   return typeof n == 'number' && Math.Round(n) % 1 == 0;   
}   
share|improve this answer

Another method is:

    function isFloat(float) {
        return /\./.test(float.toString());
    }

Might not be as efficient as the others but another method all the same.

share|improve this answer

As others mentioned, you only have doubles in JS. So how do you define a number being an integer? Just check if the rounded number is equal to itself:

function isInteger(f) {
    return typeof(f)==="number" && Math.round(f) == f;
}
function isFloat(f) { return typeof(f)==="number" && !isInteger(f); }
share|improve this answer
3  
Might want to check that the value is numeric... isFloat('abc') returns true – Dagg Nabbit Oct 7 '10 at 21:11
ah yes good point – Claudiu Oct 7 '10 at 21:12

For integers I use this

function integer_or_null(value) {
    if ((undefined === value) || (null === value)) {
        return null;
    }
    if(value % 1 != 0) {
        return null;
    }
    return value;
}
share|improve this answer
function isInteger(n) {
   return ((typeof n==='number')&&(n%1===0));
}

function isFloat(n) {
   return ((typeof n==='number')&&(n%1!==0));
}

function isNumber(n) {
   return (typeof n==='number');
}
share|improve this answer

It really doesn't have to be so complicated. The numeric value of an integer's parseFloat() and parseInt() equivalents will be the same. Thus you can do like so:

function isInt(value){ 
    return (parseFloat(value) == parseInt(value)) && !isNaN(value);
}

Then

if (isInt(x)) // do work

This will also allow for string checks and thus is not strict. If want a strong type solution (aka, wont work with strings):

function is_int(value){ return !isNaN(parseInt(value * 1) }
share|improve this answer
function isInt(n) 
{
    return n != "" && !isNaN(n) && Math.round(n) == n;
}
function isFloat(n){
    return n != "" && !isNaN(n) && Math.round(n) != n;
}

works for all cases.

share|improve this answer

In java script all the numbers are internally 64 bit floating point, same as double in java. There are no diffrent types in javascript, all are represented by type number. Hence you wil l not be able make a instanceof check. However u can use the above solutions given to find out if it is a fractional number. designers of java script felt with a single type they can avoid numerous type cast errors.

share|improve this answer

float values consists of ., so here we can use indexOf method.

function isInt(number){
    if(number.toString().indexOf(".") > -1)
        return false; // it is float
    else 
        return true; //it is integer
}  

The above code is only applicable if the given variable is number. if you are not sure about the type of variable , then do the following before the above code:

//as suggested by @kennebec
function isNumber(number){
    return typeof n === 'number'
}
share|improve this answer

Any Float number with a zero decimal part (e.g. 1.0, 12.00, 0.0) are implicitly cast to Integer, so it is not possible to check if they are Float or not.

share|improve this answer
parseInt(yourNumber)=== parseFloat(yourNumber)
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.