Project: Guess The Number Game
Initial Setup
To begin this tutorial, we'd like you to make a local copy of the number-guessing-game-start.html file (see it live here). Open it in both your text editor and your web browser. At the moment you'll see a simple heading, paragraph of instructions and form for entering a guess, but the form won't currently do anything.
The place where we'll be adding all our code is inside the <script>
element at the bottom of the HTML:
<script>
// Your JavaScript goes here
</script>