js check if string or number 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: javascript is variable a string
if (typeof myVar === 'string'){
}
Example 3: js check if string is number
isNaN(num)
isNaN(123)
isNaN('123')
isNaN('1e10000')
isNaN('foo')
isNaN('10px')
Example 4: To check if a value is a number in JavaScript
const value = 2
isNaN(value)
isNaN('test')
isNaN({})
isNaN(1.2)
Example 5: js check if string or int
var myString = "abc123";
var otherString = "123";
Number.isInteger(myString);
Number.isInteger(otherString);