how to find if a number is float or integer?
1.25 --> float
1 --> integer
0 --> integer
0.25 --> float
|
how to find if a number is float or integer?
|
||||
|
check a remainder when dividing by 1:
If you don't know that the argument is a number-
If you also want to include examples such as 1E308 is a float, and not an integer:
|
|||||||||||||||
|
|
Try this.
|
|||||||||||||||||
|
|
Here are efficient functions that check if the value is a number or can be safely converted to a number:
And for integers (would return false if the value is a float):
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! |
||||
|
|
|
You can use a simple regular expression:
Or you can use the below functions too, according your needs. They are developed by the PHPJS Project.
|
||||
|
|
|
Why not something like this:
|
||||
|
|
|
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:
which looks fine for common sense, but in something like C you would get |
|||
|
|
|
THIS IS FINAL CODE FOR CHECK BOTH INT AND FLOAT
OR
|
|||
|
|
|
Another method is:
Might not be as efficient as the others but another method all the same. |
||||
|
|
|
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:
|
|||||||
|
|
For integers I use this
|
|||
|
|
|
|||
|
|
|
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:
Then
This will also allow for string checks and thus is not strict. If want a strong type solution (aka, wont work with strings):
|
|||
|
|
works for all cases. |
|||
|
|
|
In java script all the numbers are |
|||
|
|
|
The above code is only applicable if the given variable is
|
||||
|
|
|
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. |
|||
|
|
<nit-pick>JavaScript does not have different integer and float numeric types. Every number in JavaScript is just aNumber.</nit-pick>– Matt Ball Oct 7 '10 at 21:01Infinityan 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:071.0is a float. – Sam Apr 9 at 10:18