how to check if a value is integer in javascript 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));
}