Answers for "check if is float"

1

how to check if a number is float javascript

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

function isFloat(n){
    return Number(n) === n && n % 1 !== 0;
}
Posted by: Guest on June-02-2021

Code answers related to "check if is float"

Python Answers by Framework

Browse Popular Code Answers by Language