diff --git a/foundations/javascript_basics/project_rock_paper_scissors.md b/foundations/javascript_basics/project_rock_paper_scissors.md index 7da3cd50303..e952628bc23 100644 --- a/foundations/javascript_basics/project_rock_paper_scissors.md +++ b/foundations/javascript_basics/project_rock_paper_scissors.md @@ -2,7 +2,9 @@ For this project, you will create the game [Rock Paper Scissors](https://www.wikihow.com/Play-Rock,-Paper,-Scissors). This game will be played entirely in the console. -
+
+ +#### No GUI yet Some of the student solutions below contain buttons, text, and other elements. These elements are part of what is called a graphical user interface (GUI). You'll create the GUI in a later lesson. In the meantime, remember to commit your code to GitHub. @@ -99,6 +101,8 @@ Your game will play 5 rounds. You will write a function named `playGame` that ca
+#### Focus on the task at hand + When making interactive projects, like this one, you might be tempted to add more features, improve interactivity, user experience, design and styling of your website, and so on. We recommend not doing that, and saving this effort for your portfolio projects.