Coding Global Background
Discord Server beitreten
Coding Global

Why is not this working?

Archiviert 9 months ago
23 Nachrichten
3 Mitglieder
Erstellt 10 months ago
Aktualisiert 10 months ago
In Discord ΓΆffnen
P
</Jacunso>
Verified
// Counter program
const decrease = document.getElementById("decreasebtn");
const reset = document.getElementById("resetbtn");
const increase = document.getElementById("increasebtn");
const countlbl = document.getElementById("myH13");
let count;

countlbl = Number(countlbl);

decrease.onclick = function(){
    count--;
    countlbl.textContent
}
increase.onclick = function(){
    count++;
    countlbl.textContent = count
}

Antworten (22)