0
Why is Dreamweaver accepting every line besides the 1st?
function xp() { // update resetting experience points to 0 var xp = parseInt(document.getElementById("xp").value); if (xp >= 10000) { document.getElementById("xp").value = 0; } }
2 ответов
+ 2
This will help you
https://sololearn.com/compiler-playground/WWKWuBsYFN88/?ref=app
0
Ty