-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
380 lines (247 loc) · 7.15 KB
/
app.js
File metadata and controls
380 lines (247 loc) · 7.15 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
// // 1st Class
// // 1st class Assignment's
// // Send data to console with template literal
// console.dir(`******Send Data to console with template literal Project Here:`)
// console.log(`Hi there! I\'m Towhozib Ahmed Tomal. I am a JavaScript Developer. My yearly salary is $1300.`)
// // Separetor
// console.dir('=================================');
// // Dynamic Developer's info console project
// // dev stand's for Developer
// console.dir(`******Developer Information Project Here:`)
// let devName = prompt('Your Name:');
// let devAge = prompt('Your Age:')
// let devStack = prompt('Your Stack:');
// let devSalary = prompt('Your Salary:');
// let devCountry = prompt('Your Country:');
// console.log(`My name is ${devName}. I am only ${devAge} years old. I am a ${devStack} Developer. I am from ${devCountry}. My yearly salary is $${devSalary}.`);
// // Separetor
// console.dir('=================================');
// // Result Mark's Project
// console.dir(`******Result Mark's Project Here:`)
// console.log(prompt('Bangla:'))
// console.log(prompt('English:'))
// console.log(prompt('Mathmetics:'))
// console.log(prompt('Sports:'))
// // Separetor
// console.dir('=================================');
// // Dynamic Kobul Project
// console.dir(`******Kobul Project Here:`)
// console.log(prompt('Enter your Name:'))
// console.log(prompt('Enter the Evidence Name-1:'));
// console.log(prompt('Enter the Evidence Name-2:'));
// console.log(prompt('Enter the Evidence Name-3:'));
// console.log(prompt('Enter the Evidence Name-4:'));
// console.log(confirm('Do you Agree?'))
// Array Practice
// const student = [
// {
// roll: 1,
// name: 'Towhozib Ahmed Tomal',
// age: 12,
// location: 'Kushtia',
// gender: 'Male'
// },
// {
// roll: 2,
// name: 'Abdur Rahim',
// age: 22,
// location: 'Mirpur',
// gender: 'Male'
// },
// {
// roll: 3,
// name: 'Saba',
// age: 8,
// location: 'Uttara',
// gender: 'Female'
// },
// {
// roll: 4,
// name: 'Ratul Ahmed',
// age: 20,
// location: 'Dhaka',
// gender: 'Male'
// },
// ];
// console.log(student[1])
// for (let i = 0; i < student.length; i++) {
// console.log(student[i].name);
// }
// for (let i = 0; i < student.length; i++) {
// console.log(`
// Roll : ${student[i].roll},
// Name : ${student[i].name},
// Age : ${student[i].age},
// location: ${student[i].location},
// Gender : ${student[i].gender},
// -------------------------------------
// `)
// };
// let a = 10;
// if (a === '10') {
// console.log(false);
// } else if (a == '10'){
// console.log(true);
// } else {
// console.log('none of them')
// }
// let num = 1;
// switch(num) {
// case 1:
// num = 2;
// default:
// num = 0;
// }
// console.log(num);
//*** Switch Statement ***
// let day = parseInt(prompt('Enter day Number:'));
// switch (day) {
// case 0:
// console.log('Today is Monday');
// break;
// case 1:
// console.log('Today is Tuesday');
// break
// case 2:
// console.log('Today is Wednesday');
// break;
// case 3:
// console.log('Today is Thursday');
// break;
// case 4:
// console.log('Today is Friday');
// break;
// case 5:
// console.log('Today is Saturday');
// break;
// case 6:
// console.log('Today is Sunday');
// break ;
// default:
// console.log('Enter The Valid day');
// break;
// }
// Class 3 ********
// A loop that will rotate from 1000 to 300
// for (let i = 1000; i >= 300; i--) {
// console.log(i);
// }
// Find the even and odd numbers from 1 and 1000 through for loop
// for (let i = 1; i <= 1000; i++) { // This is Even no. Program
// if (i % 2 == 0) {
// console.log(i);
// }
// }
// for (let i = 1; i <= 1000; i++) { // This is Odd no. Program
// if (i % 2 != 0) {
// console.log(i);
// }
// }
// Find the number divisible by 7 between 1 and 1000
// for (let i = 0; i <= 1000; i++) {
// if (i % 7 == 0) {
// console.log(i)
// }
// }
// Create a loop where the initial value is 10,000. You need to rotate the loop 50 times by using the increment and decrement operator twice.
// let i = 10000;
// while (i < 10050) {
// console.log(i)
// i++
// }
// let a = 10000;
// while (a > 9950) {
// console.log(a)
// a--
// }
// A loop that will rotate 500 times using the for loop where you just pull out the numbers divisible by 3 and 4
// for (let i = 1; i <= 500; i++) {
// if (i % 3 == 0) {
// console.log(i);
// } else if (i % 4 == 0) {
// console.log(i);
// }
// }
// Create a loop using “for” that will increment by 3 per step and break the loop when it finds a number divisible by 11
// for (let i = 23; i < 1000; i = i + 3) {
// console.log(i);
// if (i % 11 == 0) {
// break
// }
// }
// let i = 1;
// while (i <= 10) {
// console.log(i);
// i++
// }
// let i = 1;
// do {
// console.log(i);
// i++
// } while(1 <= 10);
// program to display numbers
// let i;
// console.log(i)
// const n = 5;
// // do...while loop from 1 to 5
// do {
// console.log(i);
// i++;
// } while(i < 540)
// let value = (20 < 21) ? 'This will be executed if the condition is true' : 'This value will execute if the condition is false';
// console.log(value)
// function devInfo(devName = '_____', devAge = '__', devStack = '____________') {
// return `My name is ${devName}. I am ${devAge} years old. I am a ${devStack} developer`;
// }
// console.log(devInfo('Towhozib Ahmed Tomal', 18, 'Javascript'));
// function squareArea(length) {
// return length * length
// }
// console.log(squareArea(20));
// function area(type, length, width) {
// if (type == 'square') {
// return length * length
// } else if (type == 'triangle') {
// return .5 * length * width
// } else if (type == 'rectangle') {
// return length * width
// }
// }
// console.log(`area('square', 23)`);
// let lengthValue = parseInt(prompt('Enter Length:'));
// let widthValue = parseInt(prompt('Enter Width:'));
// let heightValue = parseInt(prompt('Enter Height:'));
// console.log(`
// Length = ${lengthValue}
// Width = ${widthValue}
// Height = ${heightValue}
// =========================
// Aria of triangle = ${area('triangle', lengthValue, widthValue)}
// `);
// Browser Storage Practice
const students = [
{
id: 1,
name: 'Towhozib Ahmed Tomal',
age: 17,
skill: 'JavaScript'
},
{
id: 2,
name: 'Towhozib Ahmed',
age: 15,
skill: 'Java'
},
{
id: 3,
name: 'Towhozib',
age: 13,
skill: 'Python'
}
];
// localStorage.setItem('Name','Towhozib Ahmed Tomal');
// localStorage.setItem('Age','17');
// localStorage.setItem('Skill','JavaScript');
localStorage.setItem('Data', JSON.stringify(students))
let data = localStorage.getItem('Data');
console.log(JSON.parse(data));