Created
August 9, 2019 10:18
-
-
Save anthify/3952e5688de57ab597a7229d159adde2 to your computer and use it in GitHub Desktop.
Rock, Paper, Scissors!
This file contains 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
const rockPaperScissors = usersHand => { | |
let computersHand; | |
let result; | |
// logic | |
return ` | |
You ${result}, computer picked ${computersHand} | |
`; | |
} | |
// console.log(rockPaperScissors("rock")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment