javascript check if a number is integer code example
Example 1: javascript is number an integer
Number.isInteger(value)
//returns a Boolean
Example 2: js check if string is integer
function isInt(str) {
return !isNaN(str) && Number.isInteger(parseFloat(str));
}