DEV Community

Range Finder
Range Finder

Posted on

Create clicking apps with js

Here we learn how you can create simple click apps by using javascript.

First let me explain what are clicking apps. So clicking apps are like a counter when you click on button or any key (set in coding) 1 number increments in a number. We have many online app like you can check at https://tecagile.com/click-speed-test-tool/ this app is working with click

Counter Code

<button id="clickme">Click me: 0</button>
<script>
var button = document.getElementById("clickme"),
  count = 0;
button.onclick = function() {
  count += 1;
  button.innerHTML = "Click me: " + count;
};

</script>
Enter fullscreen mode Exit fullscreen mode

Explanation

Above is html and js code. In html we have button when you click on the button a call will go to onclick function which is in js and it will increment 1 number.

Top comments (0)