Making a console rock, paper scissors game
Summary The issue with the Rock, Paper, Scissors game is due to the incorrect implementation of the getHumanChoice and getComputerChoice functions. The getHumanChoice function is using prompt which is not suitable for a console game, and the getComputerChoice function is generating a new random choice every time it is called. The main problem is that … Read more