Skip to content

abaker93/rock-paper-scissors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rock Paper Scissors Game

Introduction

We're going to make a simple implementation of grade-school classic "rock paper scissors". If you don't know what that is check the Wikipedia article or this ridiculous step-by-step. For the moment we're just going to play the game from the browser console, but we will revisit it and add a front end later so don't forget to keep the code on GitHub! You might notice some 'view in browser' links in the student solutions - this is coming in a later lesson. When you get there don't forget to come back and add your link!

Assignment 1

1. Start a new Git repo for your project. 2. Create a blank HTML document with a script tag. This game is going to be played completely from the console, so don't worry about putting anything else in there. 3. Your game is going to play against the computer, so begin with a function called `computerPlay` that will randomly return either 'Rock', 'Paper' or 'Scissors'. We'll use this function in the game to make the computer's play. 4. Write a function that plays a single round of Rock Paper Scissors. The function should take two parameters - the `playerSelection` and `computerSelection` - and then return a string that declares the winner of the round like so: `"You Lose! Paper beats Rock"` 1. Make your function case insensitive (so users can input `rock`, `ROCK`, `RocK` or any other variation)
  1. Important note: you want to return the results of this function call, not console.log() them. To test this function console.log the results:

    function playRound(playerSelection, computerSelection) {
    	// your code here!
    }
    
    const playerSelection = 'rock'
    const computerSelection = computerPlay()
    console.log(playRound(playerSelection, computerSelection))
  2. Write a NEW function called game(). Use the previous function inside of this one to play a 5 round game that keeps score and reports a winner or loser at the end.

    1. You have not officially learned how to "loop" over code to repeat function calls... if you already know about loops from somewhere else (or if you feel like doing some more learning) feel free to use them. If not, don't worry! Just call your playRound function 5 times in a row. Loops are covered in the next lesson.
    2. At this point you should be using console.log() to display the results of each round and the winner at the end.
    3. Use prompt() to get input from the user. Read the docs here if you need to.
    4. Feel free to re-work your previous functions if you need to. Specifically, you might want to change the return value to something more useful.
    5. Feel free to create more "helper" functions if you think it would be useful.

Assignment 2

Go back to your “Rock Paper Scissors” game from a previous lesson and give it a simple UI so that the player can play the game by clicking on buttons rather than typing their answer in a prompt.

  1. Copy your original code into a new file so you don’t lose it.

    • Stored in the "console" branch of this project
  2. For now, remove the logic that plays exactly five rounds.

  3. Create three buttons, one for each selection. Add an event listener to the buttons that calls your playRound function with the correct playerSelection every time a button is clicked. (you can keep the console.logs for this step)

  4. Add a div for displaying results and change all of your console.logs into DOM methods.

  5. Display the running score, and announce a winner of the game once one player reaches 5 points.

  6. You will likely have to refactor (rework/rewrite) your original code to make it work for this. That’s OK! Reworking old code is an important part of the programmer’s life.

  7. Don’t forget to go back and add your new version to the original Rock Paper Scissors Project!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published