From de03f54e2fd667d77268436af1b3330628caf475 Mon Sep 17 00:00:00 2001 From: Emily Garvey <41160828+emilygarvey@users.noreply.github.com> Date: Fri, 18 Sep 2020 11:48:11 -0400 Subject: [PATCH] Update README.md --- README.md | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index fb65cc60..1e392889 100644 --- a/README.md +++ b/README.md @@ -7,16 +7,15 @@ In this unit, coders will create a Rock, Paper, Scissors game. To create this pr #### Planning - [ ] Copy the [project planning document](https://docs.google.com/document/d/1CCzFGH6Z4AtpWrDuB6KQK73N5-8ywGv0KhO10i3hZPk/edit#) and link a completed version in your ReadMe. + #### Set-Up - [x] Go to the repository at https://github.com/itscodenation/rockpaperscissors - [ ] Fork this repository to your Github account and pull it down to Glitch -- [ ] Add, commit, and push your changes -- [ ] Make your site live on gh-pages +- [ ] Look through all the Starter Code ### JavaScript - [ ] Use JavaScript to display the value of the input on the page - ### HTML and CSS - [ ] Add any more HTML elements you will need to the page - [ ] Customize your HTML with CSS @@ -31,28 +30,31 @@ In this unit, coders will create a Rock, Paper, Scissors game. To create this pr - [ ] Outside of your click handler, declare the variables you'll need to track the user choice, computer choice and winner and assign them values of empty strings. - [ ] Outside of your click handler, declare a randomNumber variable and set it equal to 0 - [ ] When the user initiates the game, generate a random number and assign it to the randomNumber variable. -- [ ] When the user initiates the game, store the user choice.. -- [ ] When the user initiates the game, display user choice to the screen +- [ ] When the user initiates the game, store the user choice. +- [ ] When the user initiates the game, display user choice to the screen. + +#### Wrap +- [ ] Save and submit your website using the link on the session agenda. ## Day 3 ## JavaScript - [ ] Write a conditional statement which, given the number range of randomNumber, assigns ‘rock’, ‘paper’ or ‘scissors’ to the variable that holds the computer choice. -- [ ] Display the computer choice to the screen -- [ ] Write a statement that compares the user choice to the computer choice to determine the winner of the game +- [ ] Display the computer choice to the screen. +- [ ] Write conditional statements that compare the user choice to the computer choice to determine the winner of the game. - [ ] Display the winner to the screen. - [ ] Clear the input value once a result is displayed. #### Wrap - [ ] Save and submit your website using the link on the session agenda. -- [ ] Push your changes! + ## Projects Extensions: -- [ ] Designed to fit the developer's personality -- [ ] Validates input so that it will return “Not valid input” if the user types in a wrong choice. -- [ ] Accepts any form of a word regardless of capitalization (i.e. “Rock” “rock” roCk”) -- [ ] Keeps track of total wins and losses, until the page refreshes. -- [ ] Allows for more variety in throwing options. Example: [Rock-Paper-Scissors-Lizard-Spock](http://en.wikipedia.org/wiki/Rock-paper-scissors-lizard-Spock) +- [ ] Style your page to fit the developer's personality +- [ ] Validate the input so that it will return “Not valid input” if the user types in a wrong choice. +- [ ] Accept any form of a word regardless of capitalization (i.e. “Rock” “rock” roCk”) +- [ ] Keep track of total wins and losses, until the page refreshes. +- [ ] Allow for more variety in throwing options. Example: [Rock-Paper-Scissors-Lizard-Spock](http://en.wikipedia.org/wiki/Rock-paper-scissors-lizard-Spock) ## References/Tools * [Fellowship Reference Table](https://docs.google.com/document/d/1qrY2OC-6S04oOXZlYmXja7lmKBmdApR-HXJkhfd67e8/)