Advertisement
728x90
The isNaN() function is used to determine whether a value is an illegal number (Not-a-Number) or not. i.e, This function returns true if the value equates to NaN. Otherwise it returns false.
javascript
1isNaN("Hello"); //true
2
3isNaN("100"); //falseAdvertisement
Responsive Ad
🎯 Practice NowRelated Challenge
JavaScript Coding Exercise 81
Test your knowledge with this interactive coding challenge.
Start CodingAdvertisement
728x90
80of476