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 ▸

I've just heard about objects. How do I use them and do they work with Arrays?


How to check if value exists in an object in JavaScript?


What does the document.onload() function do and why is it useful?


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?