Project - 13

Project 13: Rock Paper Scissors

Build the classic Rock Paper Scissors game against the computer. Show player choice, computer choice, result, and keep track of the score.

✦ HTML + CSS + JS Editor
▶ Live Output

👀 Show Example Solution
<button onclick="play('rock')">🪨</button>
<button onclick="play('paper')">📄</button>
<button onclick="play('scissors')">✂️</button>

<script>
  // Game logic, random computer choice, win conditions
</script>