How to find that a number is float or integer?
float
integer
1.25 --> float 1 --> integer 0 --> integer 0.25 --> float <
1.25 --> float 1 --> integer 0 --> integer 0.25 --> float
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; }