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

Smartphone icons created by Freepik - Flaticon

JavaScript Variables

If you re-declare a JavaScript variable, it will not lose its value.

var carName = "Volvo";
var carName;
document.getElementById("demo").innerHTML = carName;