javascript string is number code example
Example 1: intval js
parseInt(value);
let string = "321"
console.log(string);
let number = parseInt(string);
console.log(number)
Example 2: 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 3: js is number
Number.isInteger(value)
Example 4: javascript is variable a string
if (typeof myVar === 'string'){
}
Example 5: js check if string is number
isNaN(num)
isNaN(123)
isNaN('123')
isNaN('1e10000')
isNaN('foo')
isNaN('10px')
Example 6: js string have number js
var hasNumber = /\d/;
hasNumber.test("ABC33SDF");
hasNumber.test("ABCSDF");