-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathassignment.js
108 lines (90 loc) · 2.46 KB
/
assignment.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
// Values & Variables
const country = "Nigeria";
const continent = "Africa";
let population = 206100000;
console.log(country, continent, population);
// Data Types
const isIsland = true;
let language;
console.log(
typeof isIsland,
typeof population,
typeof country,
typeof language
);
// Let, Const, & Var
language = "English";
// Basic Operators
const halfPopulation = population / 2;
console.log(halfPopulation);
population++;
console.log(population);
const finland = 6000000;
const isMore = population > finland;
console.log(isMore);
const isAverage = population < 33000000;
console.log(isAverage);
let description =
"Nigeria is in \n Africa, and its 203 million \n people speak English";
console.log(description);
// Strings & Template Literals
description = `${country} is in
${continent} and it's ${population}
people speak ${language}`;
console.log(description);
// Taking Decision: If/Else Statements
if (population > 33000000) {
console.log(`${country}'s population is above average`);
} else {
console.log(
`${country}'s population is ${population - 33000000} million below average`
);
}
// Type Conversion and Coercion
console.log("9" - "5"); // 4
console.log("19" - "13" + "17"); // 617
console.log("19" - "13" + 17); // 23
console.log("123" < 57); // false
console.log(5 + 6 + "4" + 9 - 4 - 2); // 1143
// Equality Operators == vs ===
// const numNeighbours = prompt(
// "How many neighbour countries does your country have?"
// );
// if (Number(numNeighbours) === 1) {
// console.log("Only 1 borders");
// } else if (numNeighbours > 1) {
// console.log("More than 1 borders");
// } else {
// console.log("No Borders");
// }
// Logical Operators
if (language === "English" && population < 50000000 && !isIsland) {
console.log(`You should live in ${country} 🙂`);
} else {
console.log(`${country} does not meet your criteria 😔`);
}
// The Switch Statement
switch (language) {
case "Chinese":
case "Mandarin":
console.log("MOST number of native speakers!");
break;
case "Spanish":
console.log("Second place in number of native speakers!");
break;
case "English":
console.log("Third Place");
break;
case "Hindi":
console.log("Number Four");
break;
case "Arabic":
console.log("Fifth most spoken language");
break;
default:
console.log("Great language too. :D");
}
// The Conditional (Ternary) Operator
console.log(
`${country}'s population is ${population > 33 ? "above" : "below"} average`
);