Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 703 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 703 Bytes

Rock Paper Scissors

Overview

This is a simple Rock Paper Scissors game developed as part of The Odin Project curriculum. It allows players to play a game of Rock, Paper, Scissors against the computer in the browser console, with the computer's choices generated randomly.

Features

  • Player vs Computer gameplay
  • Random computer choice for each round
  • Displays the result of each round (win, lose, or draw)
  • Keeps track of scores and declares a winner after a set number of rounds

Skills Demonstrated

  • JavaScript Basics: Understanding functions, loops, and conditionals
  • Debugging: Utilizing browser console for testing and debugging