JSFiddle - React, Tailwind, and code Playground

by Nayana Das

JavaScript

var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
if (computerChoice < 0.34) {
    computerChoice = "rock";
}
else if(computerChoice <= 0.67) {
    computerChoice = "paper";
}
else {
    computerChoice = "scissors";
} 
console.log("Computer: " + computerChoice);

var compare = toCompare(userChoice, computerChoice);

function toCompare(userChoice, computerChoice){
    if (userChoice === computerChoice){
         alert("The result is a tie!");
    }
    if(userChoice === "rock"){
        if (computerChoice === "scissors"){
            alert("rock wins");
        }
        else{
            alert("paper wins");
        }
    }
    if(userChoice === "paper"){
        if (computerChoice === "rock"){
            alert("paper wins");
        }
        else{
            alert("scissors wins");
        }
    }
    if(userChoice === "scissors"){
        if (computerChoice2 === "paper"){
            alert("scissors wins");
        }
        else{
            alert("rock wins");
        }
    }
};