+ 1
Guesses
How do you let user know how many guesses it took to guess the number in JavaScript for guessing a random number?
3 Answers
0
How would that code look like in the function
0
How do you display the number of guesses to the user when they get it right
0
make a div with i.e. id="guesses" and display it like this
<div id="guesses"></div>
<script>
var AmountOfGuesses=0;
document.getElementById("guesses").innerHTML=AmountOfGuesses;
</script>