JS Coding Questions Logo
JS Coding Questions
#80💼 Interview💻 Code

What is isNaN

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"); //false

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 81

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
80of476