Make button that says how many times it has been clicked.
<button id="count" onclick="showCount()">0</button>
var x = 0; function showCount() {
x++;
document.getElementById("count").innerHTML=x;
}
PW
<button id="count" onclick="showCount()">0</button>
var x = 0; function showCount() {
x++;
document.getElementById("count").innerHTML=x;
}