Tiel file:// Rock, Paper, Scissors Play When you close the alert, you should see something that looks like this: Rock, Paper, Scissors Play Player 1 plays PAPER and Player 2 plays PAPER No winner this round If there is a winner, however, you should see something like this: Rock, Paper, Scissors. Play Player 1 plays SCISSORS and Player 2 plays ROCK Player 2 wins
Tiel file:// Rock, Paper, Scissors Play When you close the alert, you should see something that looks like this: Rock, Paper, Scissors Play Player 1 plays PAPER and Player 2 plays PAPER No winner this round If there is a winner, however, you should see something like this: Rock, Paper, Scissors. Play Player 1 plays SCISSORS and Player 2 plays ROCK Player 2 wins
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Please help me with this I am struggling. I need help replicating the image below. In image 2 and 3, below the grey box it display (player 1 wins) that what I need help with
JavaScript:
// Global variables to keep track of wins and losses
let player1Wins = 0;
let player2Wins = 0;
let ties = 0;
function playGame() {
// Generate random numbers for player and computer
const playerChoice = Math.floor(Math.random() * 3) + 1;
const computerChoice = Math.floor(Math.random() * 3) + 1;
// Convert the random numbers to text choices
let playerTextChoice;
let computerTextChoice;
if (playerChoice === 1) {
playerTextChoice = 'ROCK';
} else if (playerChoice === 2) {
playerTextChoice = 'SCISSORS';
} else {
playerTextChoice = 'PAPER';
}
if (computerChoice === 1) {
computerTextChoice = 'ROCK';
} else if (computerChoice === 2) {
computerTextChoice = 'SCISSORS';
} else {
computerTextChoice = 'PAPER';
}
// Update the paragraph with player and computer choices
const myData = document.getElementById('mydata');
myData.innerHTML = `Player 1 plays ${playerTextChoice} and Player 2 plays ${computerTextChoice}`;
// Determine the winner
let winner;
if (playerChoice === computerChoice) {
winner = 'Tie';
ties++;
} else if (playerChoice === 1 && computerChoice === 3) {
winner = 'Player 1 Wins!';
player1Wins++;
} else if (playerChoice === 2 && computerChoice === 1) {
winner = 'Player 1 Wins!';
player1Wins++;
} else if (playerChoice === 3 && computerChoice === 2) {
winner = 'Player 1 Wins!';
player1Wins++;
} else {
winner = 'Player 2 Wins!';
player2Wins++;
}
// Display the winner using an alert if it's not a tie
if (winner !== 'Tie') {
alert(winner);
} else {
alert('Tie!');
}
// Display the tally
if (winner === 'Player 1 Wins!') {
alert(`Player 1 Wins: ${player1Wins}`);
} else if (winner === 'Player 2 Wins!') {
alert(`Player 2 Wins: ${player2Wins}`);
} else {
alert(`Ties: ${ties}`);
}
}
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Task 5 </title>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="task5.js"></script>
</head>
<body>
<div id="box">
<p style="font-family: monospace;" class="newdata"> Rock, Paper, Scissors </p>
<p></p>
<button id="button" onclick="playGame();"> Play </button>
<p> </p>
<p id="alert"></p>
<p style="font-family: monospace;" id="mydata" class="newdata"></p>
</div>
<script>
// Display the tally when the final code is run
if (winner === 'Player 1 Wins!') {
alert(`Player 1 Wins: ${player1Wins}`);
} else if (winner === 'Player 2 Wins!') {
alert(`Player 2 Wins: ${player2Wins}`);
} else {
alert(`Ties: ${ties}`);
}
</script>
</body>
</html>
CSS:
#box {
border: 3px solid black;
width: 80%;
margin: auto;
text-align: center;
overflow: auto;
padding: 20px;
}
#mydata {
margin: 20px;
width: 80%;
margin: auto;
background: grey;
height: 60px;
font-family: monospace;
font-size: 2em;
text-align: center;
border: 1px black solid;
}
AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
Unlock instant AI solutions
Tap the button
to generate a solution
Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education