I\'m working on making my first game (Rock Paper Sissors) and I ran into an issue where when the userChoice is scissors and the com
var userChoice = prompt("Do you choose rock, paper or scissors? ");
var computerChoice=Math.random();
{
if(computerChoice <= ".33")
{
computerChoice === 'rock';
}
else if(computerChoice<='.66' & '>=.34')
{
computerChoice === 'paper';
}
else
{
computerChoice ===' scissors';
}
}
console.log( computerChoice);