-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
23 lines (19 loc) · 695 Bytes
/
index.js
File metadata and controls
23 lines (19 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var randomNumber1 = Math.floor(Math.random()*6)+1;
var res="dice"+randomNumber1+".png";
var res2="images/"+res;
var image1=document.querySelectorAll("img")[0];
image1.setAttribute("src",res2);
var randomNumber2 = Math.floor(Math.random()*6)+1;
var resu="dice"+randomNumber2+".png";
var resu2="images/"+resu;
var image2=document.querySelectorAll("img")[1];
image2.setAttribute("src",resu2);
if(randomNumber1 > randomNumber2){
document.querySelector("h1").innerHTML="Player 1 Wins";
}
else if(randomNumber2< randomNumber1){
document.querySelector("h1").innerHTML="Player 2 Wins";
}
else{
document.querySelector("h1").innerHTML="Tie b/w Player 1 & Player 2";
}