odin-rps/index.js

7 lines
166 B
JavaScript
Raw Normal View History

2024-01-03 18:36:00 +00:00
const choices = ["rock", "paper", "scissors"];
function getComputerChoice() {
return choices[Math.floor(Math.random() * 3)];
}
console.log(getComputerChoice());