-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
60 lines (50 loc) · 1.78 KB
/
script.js
File metadata and controls
60 lines (50 loc) · 1.78 KB
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
54
55
56
57
58
59
60
"use strict";
let secretNumber = Math.trunc(Math.random() * 20) + 1;
let score = 20;
let highscore = 0;
const againButton = document.querySelector(".again");
document.querySelector(".score").textContent = score;
//Update Message
const displayMessage = function (message) {
document.querySelector(".message").textContent = message;
};
//Check Guess Functionality
document.querySelector(".check").addEventListener("click", function () {
const guess = Number(document.querySelector(".guess").value);
//When invalid input given
if (!guess) {
displayMessage("Invalid Guess");
//When player wins
} else if (guess === secretNumber) {
displayMessage("Correct!!! You Win!");
document.querySelector(".number").textContent = secretNumber;
document.querySelector("body").style.backgroundColor = "#60b347";
document.querySelector(".number").style.width = "30rem";
if (score > highscore) {
highscore = score;
document.querySelector(".highscore").textContent = highscore;
}
//When guess is wrong
} else if (guess !== secretNumber) {
if (score > 1) {
displayMessage(
guess > secretNumber ? "Too High! Guess Again" : "Too Low! Guess Again"
);
score--;
document.querySelector(".score").textContent = score;
} else {
displayMessage("You Lose!");
}
}
});
//New Game Functionality
againButton.addEventListener("click", function () {
secretNumber = Math.trunc(Math.random() * 20) + 1;
score = 20;
document.querySelector(".score").textContent = score;
displayMessage("Start guessing...");
document.querySelector(".number").textContent = "?";
document.querySelector(".guess").value = "";
document.querySelector("body").style.backgroundColor = "#222";
document.querySelector(".number").style.width = "15rem";
});