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

Smartphone icons created by Freepik - Flaticon

JS Variables

A variable can change its type. In this example x is first a string then a number:

let x = "Hello";
x = 5;
document.getElementById("demo").innerHTML = typeof x;