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

Smartphone icons created by Freepik - Flaticon

JavaScript Numbers

If you use NaN in a mathematical operation, the result will also be NaN:

let x = NaN;
let y = 5;
document.getElementById("demo").innerHTML = x + y;