Dashboard Temp Share Shortlinks Frames API

HTMLify

sim.js
Views: 25 | Author: dakshbadal1379
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
let h = document.querySelector("#top-heading");
let pr = document.querySelector("#rev-result");
let count = 0;
pr.innerText = "Count: "+count;

let plus = document.querySelector("#grow");
let reboot = document.querySelector("#reload");
reboot.addEventListener("click", function(){
    count = 0;
    pr.innerText = "Count: "+0;
});
plus.addEventListener("click", function(){
    count++;
    pr.innerText = "Count: "+count;
});