all reset
☀ Lights
Netbax Online Editor Try it Yourself
Run
HTML
reset
copy
Test
Js
JAVASCRIPT
reset
copy
function myFunction() { const message = document.getElementById("play"); message.innerHTML = ""; let x = document.getElementById("bax").value; try { if(x == "") throw "is Empty"; if(isNaN(x)) throw "is not a number"; if(x > 9) throw "is too high"; if(x < 3) throw "is too low"; } catch(err) { message.innerHTML = " " + err; } }