Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Your Manager has laid out the following requirements for the project:

##Learning Objectives
By the end of this project the employee will be able to...

* Clone and push a GitHub repository
* Implement Math.random
* Use conditions to evaluate a function
Expand Down
4 changes: 2 additions & 2 deletions doNow.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ The do now activity for this session is to write out the rules and conditions fo

| Player1 | Player2 | Winner |
|----------|----------|---------|
| Rock | Rock | |
| Rock | Paper | |
| Rock | Rock | Tie |
| Rock | Paper | Paper |
| Rock | Scissors | |
| Paper | Rock | |
| Paper | Paper | |
Expand Down
8 changes: 4 additions & 4 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

<head>
<title>
<!-- Enter a title for your game here -->
rok papr sizers
</title>
<!-- Link CSS here -->
<link rel="stylesheet" type="css/css" href="theme.css">

<!-- Link JQuery here -->


<!-- Link script.js here -->
</head>
Expand All @@ -17,7 +17,7 @@
<div class="container">
<div id="rock" class="token">ROCK</div>
<div id="paper" class="token">PAPER</div>
<!-- Create Scissors option here -->
<div id="scissors" class="token">SCISSORS</div>
</div>

<div class="container">
Expand Down
2 changes: 1 addition & 1 deletion starter_code/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var aiPoint = 0;

// This function returns the selection of the computer
function getAISelection() {
//TODO: randomly choose between 'rock', 'paper', or 'scissors'

}

// This function picks the winner
Expand Down