-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicJavascript_8.js
More file actions
423 lines (346 loc) · 11.8 KB
/
Copy pathBasicJavascript_8.js
File metadata and controls
423 lines (346 loc) · 11.8 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
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
// Object Oriented and Classes {OOP}:
// What Is Object? => Collection of properties and methods.
// properties Means Variables ; methods means function.
// > toLowerCase,promises,Etc.
// Why use OOP?
// parts of OOP {object literal}
// keyword:
// >Constructor function;Prototypes ; classes ; instances{new , this}
// Study on 4 Pillars : Abstraction ; Encapsulation ; Inheritance ; Polymorphism.
// Object Literal :
const user = {
username: "Arafat",
logInCount: 8,
signedIn: true
}
console.log(user);
console.log(user.username);
const users = {
username: "Arafat",
logInCount: 8,
signedIn: true,
getUserDetails: function () {
// console.log("Got user details from database");
// console.log(`UserName :${username} `); // Got Error : username is not defined but username is clearly defined,that's why need "this" keyword...
// console.log(`UserName :${this.username} `);
console.log(this); // all the values / properties shown on.
}
}
console.log(users);
console.log(users.getUserDetails());
// If I :
// console.log(this); // Get { } / Empty parentheses in node.js, but not in browser .
// Constructor function: {new}=> new is the constructor functions
const promiseOne = new Promise()
const date = new Date()
function User( username ,logInCount , signedIn ) {
this.username = username ; // this.username ==> variable {like,myusername,username1,etc} ; username ==> values of parameters /argument
this.logInCount = logInCount
this.signedIn = signedIn
return this
// return this
// If i comment "return this" ?however,code getting executed ,no effect on "return this" keyword.
}
// const userOne = User("Arafat" , 12 , true)
// console.log(userOne);
/*
console.log(userOne.username);
console.log(userOne.logInCount);
console.log(userOne.signedIn);
*/
// But,actual problem is :
// const userTwo = User("Arfan" , 11 , false)
// console.log(userOne); // Not getting error but, values are " override " on {userOne and userTwo}.
// Now This problem has been solved :
const userOne = new User("Arafat" , 12 , true)
console.log(userOne);
const userTwo = new User("Arfan" , 11 , false)
console.log(userTwo);
function User( username ,logInCount , signedIn ) {
this.username = username ;
this.logInCount = logInCount
this.signedIn = signedIn
this.greeting = function () {
console.log(` Welcome ${this.username} `);
}
return this
}
const userOne1 = new User("Arafat" , 12 , true)
console.log(userOne1);
console.log(userOne1.constructor);
const userTwo2 = new User("Arfan" , 11 , false)
console.log(userTwo2.constructor);
// *** Study On : "instanceof"
// Prototype{magic of prototype}:
// Js Prototype Diagram :
// [Array/String/function --> Object --> Null]
// " New " Keyword :
function multipleBy5(num) {
return num * 5
}
// multipleBy5(5)
multipleBy5.power = 2
console.log( multipleBy5(5));
console.log( multipleBy5.power);
console.log( multipleBy5.prototype);
function createUser(username,score) {
this.username = username
this.score = score
}
createUser.prototype.increment = function () {
this.score++
}
createUser.prototype.printMe = function () {
console.log(`price is ${this.score}`);
}
/*
const chai = createUser("chai",25)
const tea = createUser("tea",10)
chai.printMe() // error,because need " new" keyword
*/
const chai = new createUser("chai",25)
const tea = new createUser("tea",10)
chai.printMe()
tea.printMe()
/*
" new " Keyword's Notes : behind the scene :-
Here's what happens behind the scenes when the new keyword is used:
1. A new object is created: The new keyword initiates the creation of a new JavaScript object.
2. A prototype is linked: The newly created object gets linked to the prototype property of the constructor function. This means that it has access to properties and methods defined on the constructor's prototype.
3. The constructor is called: The constructor function is called with the specified arguments and this is bound to the newly created object. If no explicit return value is specified from the constructor, JavaScript assumes this, the newly created object, to be the intended return value.
4. The new object is returned: After the constructor function has been called, if it doesn't return a non-primitive value (object, array, function, etc.), the newly created object is returned.
*/
// prototype :
let myName = " arafat "
console.log(myName.length);
let myName1 = " arafat "
// console.log(myName1.trim().length); // but it's better to rare used for repeatingly typed code same syntax. That's Why :
// console.log(myName1.trueLength);
// If you understand about "console.log(myName1.trueLength); => trueLength",then gether some history about This :
// Array :
let myHeros = ["thor","spiderman"]
// Object :
let heroPower = {
thor : "Arafat",
spiderman: "Arfan",
getSpiderPower : function () {
console.log(`spidy power is ${ this.spiderman}`);
}
}
Object.prototype.arafat = function () {
console.log(`Arafat is present in all objects`);
}
// heroPower.arafat()
myHeros.arafat()
let myHeros2 = ["thor","spiderman"]
// Object :
let heroPower2 = {
thor : "Arafat",
spiderman: "Arfan",
getSpiderPower : function () {
console.log(`spidy power is ${ this.spiderman}`);
}
}
Object.prototype.arafat = function () {
console.log(`Arafat is present in all objects`);
}
Array.prototype.heyArafat = function () {
console.log(`Arafat says "hello"`);
}
// heroPower2.arafat()
myHeros2.arafat()
myHeros2.heyArafat()
heroPower2.heyArafat() // not access to this function.
// Inheritance :
const User = {
name: " chai ",
email: " chaijahgjk.com"
}
const Teacher = {
makeVideo : true
}
const TeachingSupport = {
isAvailable : false
}
const TASupport = {
makeAssigment : "JS Assignment",
fullTime : true,
__proto__:TeachingSupport // this is linking by TASupport and TeachingSupport .
}
Teacher.__proto__= User //These type is older syntax ...
// Modern Syntax :
Object.setPrototypeOf(TeachingSupport,Teacher)
let anotherUser = " ArafatTea "
String.prototype.trueLenth = function() {
console.log(`${this}`);
console.log(`${this.name}`); // Getting Undefined.
console.log(`True Length is : ${this.trim().length}`);
}
anotherUser.trueLenth()
'arafat'.trueLenth()
"IceTea".trueLenth()
// Call And this :
function SetUsername(username) {
// Complex DB Calls
this.username = username
console.log("called");
}
function createUser(username, email, password) {
SetUsername.call(this, username)
this.email = email
this.password = password
}
const arafat = new createUser("Arafat", "arafatjkgh.com", "123")
console.log(arafat);
// Class Constructor and Static : ES6
/*
Class constructor syntax :
class name {
constructor(parameters) {
}
}
*/
class User {
constructor(username, email, password) {
this.username = username;
this.email = email;
this.password = password
}
encryptPassword() {
// return this.password
return `${this.password}abc `
}
changeUsername(){
return `${this.username.toUpperCase()} `
}
}
const chaiy = new User("chaiy", "chaiyhjg.com","123")
console.log(chaiy.encryptPassword());
console.log(chaiy.changeUsername());
// behind the scene
function User(username, email, password) {
this.username = username;
this.email = email;
this.password = password
}
User.prototype.encryptPassword = function ()
{
return `${this.password}abc`
}
const tea2 = new User("tea2", "tea2hjg.com","123")
console.log(tea2.encryptPassword());
console.log(tea2.changeUsername());
// prototype behavioural {inheritance} :
// Basic Class :
class User {
constructor(username) {
this.username = username
}
logMe(){
console.log(`USERNAME is ${this.username} `);
console.log(`USERNAME is ${this.username.toUpperCase()} `);
}
}
class Teachers extends User {
constructor(username, email, password) {
super(username)
this.email = email
this.password = password
}
addCourse(){
console.log(`A new course was add by ${this.username} `);
}
}
const logIn = new Teachers("Arafat" , "arafat124.com", "123")
logIn.addCourse()
const loggedIn = new User("Arfan")
// loggedIn.addCourse() // Q. is :- "loggedIn" is access or not ? Ans. is : not ...
//but ,
loggedIn.logMe()
logIn.logMe()
console.log( logIn === loggedIn );
console.log( logIn === Teachers );
console.log( logIn instanceof Teachers );
console.log( logIn instanceof User );
// Static Pro{Properties} :
class User {
constructor(username) {
this.username = username
}
logMe(){
console.log(`USERNAME is : ${this.username} `);
}
/* createId(){
return `123`
} */
static createId(){
return `123`
}
}
const arafath = new User('Arafat');
// console.log(arafath.createId());
class Teachers extends User {
constructor(username, email) {
super(username)
this.email = email
}
}
const iPhone = new Teachers("Iphone", 'iphonejdfh.com')
console.log(iPhone);
iPhone.logMe();
// console.log(iPhone.createId());
// BIND :
<button>Button</button>
class React {
constructor() {
this.library = " React"
this.server = "https://localhost:300/"
//requirement :
document
.querySelector('button')
.addEventListene("click",this.handleClick.bind(this))
}
handleClick() {
console.log("button Clicked");
console.log(this);
console.log(this.server);
}
}
const app = new React()
// OOP {for Interview Typed Questions} :
// Object.getOwnPropertyDescriptor()
// console.log(Math.PI);
// if I override :
Math.PI = 5
// console.log(Math.PI); // but ans is same,not change...
const descripter = Object.getOwnPropertyDescriptor(Math,"PI")
console.log(descripter); // Now we can see that " writable : false",that means we can't change ,but in deeply analysis we can see that ,we can change.Now the q. is " how ?".
// const mynewObject = Object.create(null)
const mynewObject = {
name: 'Tea',
price: 250,
isAvailable : true,
newObject : function () {
console.log("Tea is not complete.");
}
}
console.log(mynewObject);
console.log(Object.getOwnPropertyDescriptor(mynewObject,"name"));
console.log(Object.getOwnPropertyDescriptor(mynewObject,"price"));
/*
Object.defineProperty(mynewObject,'price',{
// writable:false,
Enumerable:false
// Enumerable:true
})
console.log(Object.getOwnPropertyDescriptor(mynewObject,"price"));
*/
/*
for (let[key,value] of mynewObject) {
}
*/
for (let[key,value] of object.entries(mynewObject)) {
if (typeof value !== 'function') {
}
console.log(`${key} : ${value}`);
}