Play Rock Paper Scissors Online - Free Game

Rock Paper Scissors

Choose one:

<script>
	function playerChoice(choice) {
		let computerChoice = Math.random();
		if (computerChoice < 0.34) {
			computerChoice = 'rock';
		} else if (computerChoice <= 0.67) {
			computerChoice = 'paper';
		} else {
			computerChoice = 'scissors';
		}

		document.getElementById('result').innerHTML = 
		`You chose ${choice}, computer chose ${computerChoice}.`;

		if (choice === computerChoice) {
			document.getElementById('result').innerHTML += ` It's a tie!`;
		} else if (choice === 'rock') {
			if (computerChoice === 'scissors') {
				document.getElementById('result').innerHTML += ` You win!`;
			} else {
				document.getElementById('result').innerHTML += ` Computer wins!`;
			}
		} else if (choice === 'paper') {
			if (computerChoice === 'rock') {
				document.getElementById('result').innerHTML += ` You win!`;
			} else {
				document.getElementById('result').innerHTML += ` Computer wins!`;
			}
		} else if (choice === 'scissors') {
			if (computerChoice === 'paper') {
				document.getElementById('result').innerHTML += ` You win!`;
			} else {
				document.getElementById('result').innerHTML += ` Computer wins!`;
			}
		}
	}

</script>
Play Rock Paper Scissors Online - Free Game

原文地址: https://www.cveoy.top/t/topic/lmob 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录