You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Vre2/Validate whether a given va...

8 lines
178 B
JavaScript

function is_nan(val)
{
return val !== val;
}
console.log(is_nan(NaN));
console.log(is_nan('bar'));