-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
168 lines (144 loc) · 3.52 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
const chalk = require('chalk');
var readlineSync = require('readline-sync');
var userAnswer= readlineSync.question(chalk.green("What's your good name? "));
var score=0;
console.log(chalk.magenta("Welcome " + userAnswer.toUpperCase()+ "!" + " ヘ( ^o^)ノ\(^_^ )" ));
console.log("\n");
console.log(chalk.cyan("Quizoid is a fact quiz game that contains ten questions. Players score points by answering the questions correctly and adding their name to highest scores list."))
console.log("Play right now & secure high points!")
console.log("\n");
var askUser= readlineSync.question(chalk.green("Do you wish to play? yes/no "));
// data of high score
var highScores = [
{
name: "Darsh",
score: 7,
},
{
name: "Isha",
score: 8,
},
]
//play function
function play(question,answer)
{
var nextUser=readlineSync.question(chalk.green(question));
if(nextUser.toLowerCase() == answer.toLowerCase()){
console.log(chalk.redBright("Woaahhh!! You are right!"));
score=score+1;
console.log(chalk.yellow("Your Current Score Is: " + score+ ". Let's move to next question!!"));
console.log("-------------------");
}
else{
console.log(chalk.red("Ahhh!! You are wrong!"));
console.log(chalk.yellow("Your Current Score Is: " + score+ ". Let's move to next question!!"));
console.log("-------------------");
}
}
function showScores() {
highScores.map(score => console.log(score.name, " : ", score.score))
}
//array of objects
var questions = [{
question: `
1. How long does it take to hard boil an egg?
a: a minute
b: 7 minutes
c: an hour\n`,
answer: "b"
},
{
question: `
2. How many phases of the moon are there?
a: Eight
b: Nine
c: One\n`,
answer: "a"
},
{
question: `
3. How many bones do sharks have in their bodies?
a: 206
b: 18,000
c: None\n`,
answer: "c"
},
{
question: `
4. What year did the Titanic movie come out?
a: 2011
b: 1997
c: 1990\n`,
answer: "b"
},
{
question: `
5. How many total time zones are there in the world?
a: 24
b: 5
c: 19\n`,
answer: "a"
},
{
question: `
6. How much weight can an ant lift?
a: 50 times its weight
b: 100 times its weight
c: 10 times its weight\n`,
answer: "a"
},
{
question: `
7.How many Earths could fit inside the sun?
a: 1.1 Million
b: 10000
c: 1.3 Million\n`,
answer: "c"
},
{
question: `
8. Where would you find the Sea of Tranquility?
a: The Earth
b: The Moon
c: The Mars\n`,
answer: "b"
},
{
question: `
9.What was the first soft drink in space?
a: Coca Cola
b: Frooti
c: Sprite\n`,
answer: "a"
},
{
question: `
10. Where does Santa Claus live?
a: The North Pole
b: The South Pole
c: The East Pole\n`,
answer: "a"
}
];
if(askUser.toLowerCase() == "yes")
{
console.log("Let's start!");
console.log(chalk.yellowBright("Type appropriate option a, b or c:"));
for(var i=0; i<questions.length; i++)
{
var currentQuestion= questions[i];
play(currentQuestion.question, currentQuestion.answer);
}
console.log("\n");
console.log(chalk.yellowBright("Yeahhh!! You came to an end."));
console.log(chalk.whiteBright("Your Final Score is: " + (chalk.bgBlue(score)) + ". Thanks for playing!"));
console.log(chalk.yellowBright("I hope you enjoyed playing it."));
console.log("\n");
console.log(chalk.greenBright("Check out the high scores, if you should be there ping me and I'll update it."));
showScores();
}
else if(askUser.toLowerCase() == "no")
{
console.log("That's okay, Play next time!");
}
console.log(chalk.cyanBright("Hope to see you again:)"));