This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Numbers

The isNaN() Method

The isNan() method returns true if the argument is NaN. Otherwise it returns false.

document.getElementById("demo").innerHTML =
isNaN("Hello") + "<br>" + isNaN("10");