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

Related Javascript Mentoring answers

All answers ▸

How are objects created in arrays


Find the sum of all multiples of 2 less than 10000


What is the difference between let and var when declaring variables in javascript?


If I do var a=3 and var b=4 and then do var c=a+b it tells me the answer is 34. Why?