This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Numbers and Number objects cannot be safely compared:
// x is a number let x = 500; // y is an object let y = new Number(500); document.getElementById("demo").innerHTML = (x==y);