-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRock-Paper-Scissor.js
53 lines (39 loc) · 1 KB
/
Rock-Paper-Scissor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<<<<<<< HEAD
function rps(p1, p2) {
const winningConditions = {
"Rock": "Scissors",
"Scissors": "Paper",
"Paper": "Rock"
};
if (p1 === p2) {
return "It's a draw";
}
if (winningConditions[p1] === p2) {
return "The winner is p1";
} else {
return "The winner is p2";
}
}
console.log(rps("Rock", "Paper"));
console.log(rps("Scissors", "Paper"));
console.log(rps("Paper", "Paper"));
=======
function rps(p1, p2) {
const winningConditions = {
"Rock": "Scissors",
"Scissors": "Paper",
"Paper": "Rock"
};
if (p1 === p2) {
return "It's a draw";
}
if (winningConditions[p1] === p2) {
return "The winner is p1";
} else {
return "The winner is p2";
}
}
console.log(rps("Rock", "Paper"));
console.log(rps("Scissors", "Paper"));
console.log(rps("Paper", "Paper"));
>>>>>>> bcba8adcc1334ca6612791ec69261e590221e233