Last updated 3 years ago
Was this helpful?
The isNaN() function determines whether a value is or not. Because coercion inside the isNaN function can be , you may alternatively want to use .
isNaN()
isNaN
function milliseconds(x) { if (isNaN(x)) { return 'Not a Number!'; } return x * 1000; } console.log(milliseconds('100F')); // expected output: "Not a Number!" console.log(milliseconds('0.0314E+2')); // expected output: 3140
NaN
Number.isNaN()