-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathend-game.js
38 lines (30 loc) · 1 KB
/
end-game.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
var input = require('readline-sync');
// global variables
score = 0
var userName = input.question("Enter your Name: ")
console.log('Hi ', userName, "Welcome to lord jagannath's quiz\ntype your answer in smallcase:-}\nlet's get started\n--------------------------------------------")
function quizProcessor(question, answer){
var userInput = input.question(question)
if(userInput === answer){
score += 1
console.log('Right Answer!')
}else{
score -= 1
console.log('correct answer is',answer)
}
console.log('your score is: ', score)
}
var questionArray = [{
question:"Name of Lord Jagannath's Sister :-)",
answer: "subhadraji",
},{
question:"Name of Lord Jagannath's Big and strong Brother",
answer: "balbhadraji",
},{
question:"Name of Lord Jagannath's staying place",
answer: "puri",
}]
for(var i=0; i<questionArray.length; i++){
quizProcessor(questionArray[i].question, questionArray[i].answer)
}
console.log('Your Total Score is', score)