-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript9.js
409 lines (319 loc) · 8.21 KB
/
script9.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
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
'use strict';
// Object Oriented Programming (OOP)
/**
* Classes and Objects
*
* student {
*
* name;
* age;
*
* study () {
* ....
* }
*
* play () {
* ...
* }
*
* }
*
* class child extends student {
* ...
*
* ....
* play () {
* }
*
* }
*
* obj = new student() // Instantiation
*
* 1. Abstraction
* 2. Encapsulation
* 3. Inheritance
* 4. Polymorphism
*
*
* Objects prototype
* prototypal Inheritance
*
* 1. constructor Function
* new functionName
* new Array
*
* 2. Es6 classes
*
* 3. Object.create()
*/
// const arr = [1, 2, 3];
// arr.length;
// const Person = function (firstName, birthYear, course = 'Js') {
// this.firstName = firstName;
// this.birthYear = birthYear;
// this.course = course;
// Not The way of Making Methods
// this.calcAge = function () {
// return 2023 - birthYear;
// };
// };
/**
* 1 {}
* 2. this
* 3. prototype
* 4. function return object
*/
// const abhishek = new Person('Abhishek', 1991);
// const ram = new Person('Ram', 2001, 'PHP');
// console.log(abhishek);
// console.log(ram.firstName);
// console.log(ram.calcAge());
// console.log(abhishek.calcAge());
// const arr = [];
// const arr1 = new Array();
// console.log(Person.prototype);
// Person.prototype.calcAge = function () {
// return 2023 - this.birthYear;
// };
// console.log(abhishek.calcAge());
// console.log(Person.prototype);
// // __proto__
// console.log(abhishek.__proto__);
// console.log(abhishek.__proto__ === Person.prototype);
// console.log(Person.prototype.isPrototypeOf(abhishek));
// const ramesh = {
// name: 'Ramesh',
// };
// console.log(Person.prototype.isPrototypeOf(ramesh));
// Person.prototype.species = 'Homo sapiens';
// console.log(Person.prototype);
// console.log(Person.prototype.isPrototypeOf(Person));
// console.log(abhishek.hasOwnProperty('firstName'));
// console.log(ram.hasOwnProperty('firstName'));
// console.log(ramesh.hasOwnProperty('name'));
// console.log(abhishek.hasOwnProperty('species'));
// console.log(abhishek.__proto__);
// console.log(abhishek.__proto__.__proto__);
// console.log(abhishek.__proto__.__proto__.__proto__);
// const arr = new Array(1, 2, 3, 4);
// const arr = [1, 2, 3, 4, 1, 3, 2];
// console.log(arr.__proto__);
// console.log(arr.at(1));
// console.log(arr.__proto__.__proto__);
// console.log(arr.__proto__.__proto__.__proto__);
// Never Do This
// Array.prototype.unique = function () {
// return [...new Set(this)];
// };
// console.log(arr.unique());
// class PersonCl {
// constructor(fullName, birthYear) {
// this.fullName = fullName;
// this.birthYear = birthYear;
// }
// calcAge() {
// return 2023 - this.birthYear;
// }
// greet() {
// console.log('Hi There 👋');
// }
//getter and setter methods
// get age() {
// return 2023 - this.birthYear;
// }
// set fullName(name) {
// if (name.includes(' ')) this._fullName = name;
// else alert(`${name} is not a Full name`);
// }
// get fullName() {
// return this._fullName;
// }
// static hey() {
// console.log(`Hey, Hi there!`);
// }
// }
// const abhishek = new PersonCl('Abhishek Singh', 1991);
// abhishek.fullName = 'Abhishek Singh';
// PersonCl.prototype.calcAge = function () {
// return 2023 - this.birthYear;
// };
// console.log(abhishek.firstName);
// console.log(abhishek.birthYear);
// console.log(abhishek.calcAge());
// abhishek.greet()
// console.log(PersonCl.prototype);
// console.log(abhishek.__proto__);
// console.log(abhishek);
// console.log(abhishek.age);
// console.log(abhishek.fullName);
// PersonCl.hey();
// Array.from()
// Object.create()
// const PersonProto = {
// hey() {
// console.log(`Hello There!`);
// },
// calcAge() {
// console.log(2023 - this.birthYear);
// },
// init(firstName, birthYear) {
// this.firstName = firstName;
// this.birthYear = birthYear;
// },
// };
// const steven = Object.create(PersonProto);
// steven.init('Steven', 1991);
// // steven.fullName = 'Steven';
// // steven.birthYear = 1991;
// console.log(steven);
// console.log(steven.__proto__);
// steven.hey();
// steven.calcAge();
// const Person = function (firstName, birthYear) {
// this.firstName = firstName;
// this.birthYear = birthYear;
// };
// Person.prototype.calcAge = function () {
// console.log(2023 - this.birthYear);
// };
// const Student = function (firstName, birthYear, course) {
// Person.call(this, firstName, birthYear);
// this.course = course;
// };
// Linking Prototype
// Student.prototype = Object.create(Person.prototype);
// Student.prototype.introduce = function () {
// console.log(`My name is ${this.firstName} and I study ${this.course}`);
// };
// const abhishek = new Student('Abhishek', 1991, 'PHP');
// console.log(abhishek);
// abhishek.calcAge();
// abhishek.introduce();
// console.log(abhishek.__proto__);
// console.log(abhishek.__proto__.__proto__);
// console.log(abhishek.__proto__.__proto__.__proto__);
// console.log(abhishek.__proto__.__proto__.__proto__.__proto__);
// console.log(abhishek instanceof Student);
// console.log(abhishek instanceof Person);
// console.log(abhishek instanceof Object);
// Student.prototype.constructor = Student;
// console.log(Student.prototype.constructor);
// Inheritance in Classes
class PersonCl {
constructor(fullName, birthYear) {
this.fullName = fullName;
this.birthYear = birthYear;
}
calcAge() {
return 2023 - this.birthYear;
}
greet() {
console.log('Hi There 👋');
}
}
// class StudentCl extends PersonCl {
// constructor(fullName, birthYear, course) {
// super(fullName, birthYear);
// this.course = course;
// }
// introduce = function () {
// console.log(`My name is ${this.firstName} and I study ${this.course}`);
// };
// calcAge() {
// return `Child : ${2023 - this.birthYear}`;
// }
// }
// const abhishek = new StudentCl('Abhishek', 1991, 'PHP');
// console.log(abhishek.calcAge());
// Inheritance in Object.create()
// const PersonProto = {
// calcAge() {
// console.log(2023 - this.birthYear);
// },
// init(firstName, birthYear) {
// this.firstName = firstName;
// this.birthYear = birthYear;
// },
// };
// const StudentProto = Object.create(PersonProto);
// StudentProto.init = function (firstName, birthYear, course) {
// PersonProto.init.call(this, firstName, birthYear);
// this.course = course;
// };
// StudentProto.introduce = function () {
// console.log(`My name is ${this.firstName} and I study ${this.course}`);
// };
// const abhishek = Object.create(StudentProto);
// abhishek.init('Abhishek', 1991, 'PHP');
// abhishek.introduce();
// class Account {
// constructor(owner, currency, pin) {
// this.owner = owner;
// this.currency = currency;
// this._pin = pin;
// this._movements = [];
// console.log(`Thanks for opening an Account ${owner}`);
// }
// // Public Interface
// deposit(value) {
// this._movements.push(value);
// }
// withdrawal(value) {
// this._movements.push(-value);
// }
// _approveLoan(value) {
// return true;
// }
// requestLoan(value) {
// if (this._approveLoan(value)) {
// this._movements.push(value);
// }
// }
// }
// const acc1 = new Account('Abhishek', 'INR', 111);
// acc1.deposit(2000);
// acc1.deposit(200);
// acc1.withdrawal(200);
// acc1.withdrawal(1000);
// acc1.requestLoan(5000);
// // acc1.movements.push(100)
// // console.log(acc1.pin);
// console.log(acc1);
class Account {
#pin;
#movements;
constructor(owner, currency, pin) {
this.owner = owner;
this.currency = currency;
this.#pin = pin;
this.#movements = [];
console.log(`Thanks for opening an Account ${owner}`);
}
// Public Interface
deposit(value) {
this.#movements.push(value);
}
withdrawal(value) {
this.#movements.push(-value);
}
_approveLoan(value) {
return true;
}
requestLoan(value) {
if (this._approveLoan(value)) {
this.#movements.push(value);
}
}
}
const acc1 = new Account('Abhishek', 'INR', 111);
// console.log(acc1.#pin);
// Event Loop
setTimeout(() => console.log('Set timeout'), 0);
console.log('Test Start');
console.log('Test End');
console.log('Test End1');
// Dom Api
// Geolocation API
// Event handlers
// Image Load
// Ajax calls