Rock, Paper, Scissors

Developer
Size
1,629 Kb
Views
89,056

How do I make an rock, paper, scissors?

This is a pure JS rock, paper, scissors game. The selection that the computer make is purely random.. What is a rock, paper, scissors? How do you make a rock, paper, scissors? This script and codes were developed by Sindhuja on 14 September 2022, Wednesday.

Rock, Paper, Scissors Previews

Rock, Paper, Scissors - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Rock, Paper, Scissors</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

Rock, Paper, Scissors - Script Codes JS Codes

var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
if (computerChoice < 0.34) { computerChoice = "rock";
}
else if(computerChoice <= 0.67) { computerChoice = "paper";
}
else { computerChoice = "scissors";
}
var compare = function(choice1,choice2){
if (choice1 === choice2){
confirm ("The result is a tie!");
}
else if (choice1 === "rock"){
if (choice2 === "scissors"){
confirm ("Rock wins!");
}
else{
confirm ("Paper wins!");
}
}
else if (choice1 === "paper"){
if (choice2 === "rock"){
confirm ("Paper wins!");
}
else{
confirm ("Scissors wins!");
}
}
else if (choice1 === "scissors"){
if (choice2 === "paper"){
confirm ("Scissors wins!");
}
else{
confirm ("Rock wins!");
}
}
};
compare (userChoice, computerChoice);
Rock, Paper, Scissors - Script Codes
Rock, Paper, Scissors - Script Codes
Home Page Home
Developer Sindhuja
Username SindhujaD
Uploaded September 14, 2022
Rating 3
Size 1,629 Kb
Views 89,056
Do you need developer help for Rock, Paper, Scissors?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Sindhuja (SindhujaD) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!