- https://gist.github.com/gesteves/43f2beb42f7238d23099d0ebc1601cfb
- https://github.com/jessabean/100-javascript-projects/blob/master/README.md
- https://github.com/womenwhocodedc/front-end-community/blob/master/study-guides/javascript_study_guide.md
- https://github.com/patriciarealini/expo/blob/master/tasking.md
- https://github.com/SpeakAgent/frontend-test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p id="message">Guess a number between 1 and 10</p> | |
| <form id="input"> | |
| <input type="text" name="number" id="guess"> | |
| <button id="submit">Submit</button> | |
| </form> | |
| <button id="replay" class="hidden">Replay</button> | |
| # Number-guessing | |
| - Write the `init` function to set up an event listener on the form. The event listener should pass the value of the input element to the `check` function. |
OlderNewer