summaryrefslogtreecommitdiff
path: root/graphs/js/counter/counter.js
blob: 89198de104e7b271cac85d6a5ef5b5a64eed88de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const counter = document.getElementById("count");
let counterVal = parseInt(counter.innerHTML);
const btnPlus = document.getElementById("plus");
const btnMinus = document.getElementById("minus");

btnPlus.addEventListener("click", () => {
    counter.innerHTML = ++counterVal;
});

btnMinus.addEventListener("click", () => {
    counter.innerHTML = --counterVal;
});