-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
147 lines (116 loc) · 3.92 KB
/
script.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
// ==============================================================================================
// ==============================================================================================
// ==============================================================================================
// looping concepts - for loop
// for (let i = 1; i <= 10; i++) {
// console.log(`lifting weights repetition ${i}`);
// }
// ==============================================================================================
// looping concepts - for loop - looping through the Arrays
// const prasannaArray = [
// 'Prasanna',
// 'Mallisetty',
// 20,
// 'Automation Tester',
// ['Michael', 'Peter', 'Steven']
// ];
// hard coded length of the array
// for (let i = 0; i <= 5; i++) {
// console.log(prasannaArray[i])
// }
// Using the length function
// for (let i = 0; i <= prasannaArray.length; i++) {
// console.log(prasannaArray[i], typeof prasannaArray[i]);
// }
// empty array
// const types = []
// for (let i = 0; i <= prasannaArray.length; i++) {
// console.log(prasannaArray[i], typeof prasannaArray[i]);
// types[i] = typeof [i]
// }
// console.log(types)
// ==============================================================================================
// continue and break
// const prasannaArray = [
// 'Prasanna',
// 'Mallisetty',
// 20,
// 'Automation Tester',
// ['Michael', 'Peter', 'Steven']
// ];
// // Using the length function
// console.log('--- ONLY STRINGS ---')
// for (let i = 0; i <= prasannaArray.length; i++) {
// if (typeof prasannaArray[i] !== 'string') continue;
// console.log(prasannaArray[i], typeof prasannaArray[i]);
// }
// console.log('--- BREAK IF IT IS A NUMBER ---')
// for (let i = 0; i <= prasannaArray.length; i++) {
// if (typeof prasannaArray[i] === 'string') continue;
// console.log(prasannaArray[i], typeof prasannaArray[i]);
// }
// ==============================================================================================
// Array looping back wards
// const prasannaArray = [
// 'Prasanna',
// 'Mallisetty',
// 20,
// 'Automation Tester',
// ['Michael', 'Peter', 'Steven']
// ];
// for (let i = prasannaArray.length - 1; i >= 0; i--) {
// console.log(prasannaArray[i])
// }
// ==============================================================================================
// loops inside loops
// Array looping back wards
// const prasannaArray = [
// 'Prasanna',
// 'Mallisetty',
// 20,
// 'Automation Tester',
// ['Michael', 'Peter', 'Steven']
// ];
// for (let exercise = 1; exercise < 4; exercise++) {
// console.log(`------------ starting exercise' ${exercise}`);
// for (let rep = 1; rep < 6; rep++) {
// console.log(`Liting weight repetition ${rep} :-)`)
// }
// }
// ==============================================================================================
// while loop
// const prasannaArray = [
// 'Prasanna',
// 'Mallisetty',
// 20,
// 'Automation Tester',
// ['Michael', 'Peter', 'Steven']
// ];
// console.log('----- WHILE LOOP -----')
// let rep = 1;
// while (rep <= 10) {
// console.log(`Liting weight repetition ${rep} :-)`);
// rep++;
// }
// ==============================================================================================
// While loop 2
const prasannaArray = [
"Prasanna",
"Mallisetty",
20,
"Automation Tester",
["Michael", "Peter", "Steven"],
];
console.log("----- WHILE LOOP -----");
// Generating a random number using Math.random
// let dice = Math.random() * 6
// console.log(dice)
// the above code still generates a decimal number.
// To convert to Integer, use Math.trunc
let dice = Math.trunc(Math.random() * 6) + 1;
console.log(dice);
while (dice !== 6) {
console.log(`You rolled a ${dice}`);
dice = Math.trunc(Math.random() * 6) + 1;
if (dice === 6) console.log("Loop is about to end ...");
}