+ 2
I believe youâll use the progress tag like in this article:
https://www.w3schools.com/tags/tag_progress.asp
Next youâll have to access the value attribute and increase it by one.
E.g. var a = document.getElementById(âthingâ);
a.value = a.value + 1;
0
Another alternative is incrementing it's value like
a.onclick=()=>{
a.value++
}