Function never stops running – Javascript
I'm building the first part of the Rock-Paper-Scissors project of The Odin Project foundations course and my function playRound works but never stops running function getComputerChoice(){ //create array of (rock, paper, scissors) const listOfWeapons = new Array ('Rock','Paper','Scissors'); //make computer…