📅  最后修改于: 2022-03-11 15:02:04.980000             🧑  作者: Mango
function isNumeric(str) {
// Check if input is string
if (typeof str != "string")
return false
// Use type coercion to parse the _entirety_ of the string
// (`parseFloat` alone does not do this).
// Also ensure that the strings whitespaces fail
return !isNaN(str) &&
!isNaN(parseFloat(str))
}