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 ▸

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


Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'


How to check if value exists in an object 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?