Number() 函数可以将一个字符串转换为数字,如果转换失败,则返回 NaN。我们可以利用这一点来判定字符串是否为数字。
Number()
NaN
function isNumeric(str) { return !isNaN(Number(str)); }