-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path13-switches.js
60 lines (55 loc) · 912 Bytes
/
13-switches.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
/**
* ******************************
* Switches
* ******************************
**/
/**
* ********************
* EXAMPLE 1: Color
* ********************
**/
const color = 'yellow';
switch (color) {
case 'red':
console.log('Color is red');
break;
case 'green':
console.log('Color is green');
break;
case 'blue':
console.log('Color is blue');
break;
default:
console.log('Color is not red, green or blue');
break;
}
/**
* ********************
* EXAMPLE 2: Day
* ********************
**/
let day;
switch (new Date().getDay()) {
case 0:
day = 'Sunday';
break;
case 1:
day = 'Monday';
break;
case 2:
day = 'Tuesday';
break;
case 3:
day = 'Wednesday';
break;
case 4:
day = 'Thursday';
break;
case 5:
day = 'Friday';
break;
case 6:
day = 'Saturday';
break;
}
console.log(`Today is ${day}`);