This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Counting with a local variable.
// Initiate counter let counter = 0; // Function to increment counter function add() { let counter = 0; counter += 1; } // Call add() 3 times add(); add(); add(); // The result is not 3 because you mix up the global and local counter document.getElementById("demo").innerHTML = "The counter is: " + counter;