This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
// x is a number let x = 123; // y is a Number object let y = new Number(123); document.getElementById("demo").innerHTML = typeof x + "<br>" + typeof y;