This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Redeclaring a JavaScript variable with var is allowed anywhere in a program:
var x = 2; // Now x is 2 var x = 3; // Now x is 3 document.getElementById("demo").innerHTML = x;