check a string is number in javascript code example
Example 1: javascript check if string is number
isNaN(num)
function isNumeric(num){
return !isNaN(num)
}
isNumeric(123)
isNumeric('123')
isNumeric('1e10000')
isNumeric('foo')
isNumeric('10px')
Example 2: js check if string is integer
function isInt(str) {
return !isNaN(str) && Number.isInteger(parseFloat(str));
}
Example 3: js check if string is int
function isNumeric(str) {
if (typeof str != "string")
return false
return !isNaN(str) &&
!isNaN(parseFloat(str))
}