string isnumeric js code example
Example 1: javascript check if string is number
function isNumeric(num){
return !isNaN(num)
}
isNumeric("23.33"); //true, checking if string is a number.
Example 2: js check if string is integer
function isInt(str) {
return !isNaN(str) && Number.isInteger(parseFloat(str));
}