Coding Global Background
Coding Global

Why is not this working?

Archiviert 8 months ago
23 Nachrichten
3 Mitglieder
9 months ago
In Discord öffnen
P
</Jacunso>
Verified

```div // 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 (23)