Skip to content

Commit

Permalink
update in rock paper scissors
Browse files Browse the repository at this point in the history
  • Loading branch information
nitishkhobragade committed Feb 21, 2024
1 parent 7d0af06 commit 3a90632
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 08_rock_paper_scissors_01/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ resetGame = () => {
console.clear();
console.log("Game Reset");
msg.style.backgroundColor = "#081b31";
msg.innerText = "Play your move";
msg.innerText = "Select Your Choice";
};


Expand Down
2 changes: 1 addition & 1 deletion 08_rock_paper_scissors_01/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h1>Rock Paper Scissors</h1>
</div>

<div class="msg-container">
<p id="msg">Play your move</p>
<p id="msg">Select Your Choice</p>
<button id="resetBtn" onclick="resetGame()">Reset</button>
</div>
<div class="rules">
Expand Down

0 comments on commit 3a90632

Please sign in to comment.