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;
}

Related Javascript Mentoring answers

All answers ▸

Find the sum of all multiples of 2 less than 10000


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?


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


What is the difference between global and local variables?


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2024

Terms & Conditions|Privacy Policy