-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.js
567 lines (465 loc) · 11.4 KB
/
example.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
/**
* Created by shyam on 26/03/16.
*/
"use strict";
/**
* Class Product with two public functions
* @param name
* @param price
* @constructor
*/
function Product (name, price) {
this.name = name;
this.price = price;
console.log("Product object created");
};
Product.prototype.getName = function () {
return this.name;
};
Product.prototype.getPrice = function () {
return this.price;
};
var computer = new Product("Computer", 27000);
console.log(computer.getName(), computer.getPrice(), computer.constructor);
/**
* Food inherits from Product - Pseudo Classical inheritance - Constructor based inheritance
* http://stackoverflow.com/questions/19633762/classical-inheritance-vs-prototypal-inheritance-in-javascript
* @param name
* @param price
* @constructor
*/
function Food (name, price) {
Product.call(this, name, price);
console.log("Food object created");
};
Food.prototype = Object.create(Product.prototype);
Food.prototype.constructor = Food;
var apple = new Food("Apple", 30);
console.log(apple.getName(), apple.getPrice(), apple.constructor);
/**
http://stackoverflow.com/questions/2800964/benefits-of-prototypal-inheritance-over-classical
http://theoryapp.com/javascript-inheritance-pseudoclassical-vs-prototypal/
http://markdalgleish.com/2012/10/a-touch-of-class-inheritance-in-javascript/
http://www.bennadel.com/blog/2184-object-create-improves-constructor-based-inheritance-in-javascript---it-doesn-t-replace-it.htm
**/
/**
* Equilent of Object.create
* @param o
* @returns {F}
*/
function inherit (o) {
function F () {
};
F.prototype = o;
return new F();
}
/**
* Prototypal inheritance - Object.create()
*
* */
var person = {
name: "",
age: null,
address: {
street: "",
houseNo: null
},
getName: function () {
return this.name;
},
getAge: function () {
return this.age;
},
getStreet: function () {
return this.address.street;
},
getHouseNo: function () {
return this.address.houseNo;
}
};
var boy = Object.create(person);
boy.name = "John";
boy.age = 15;
var girl = Object.create(person);
girl.name = "Dany";
girl.age = 10;
console.log(boy.getName(), boy.getAge(), boy.constructor);
console.log(girl.getName(), girl.getAge(), Object.getPrototypeOf(girl));
/**
* Problem with Object.create
* It can't replace constructor based inheritance. It just improves it.
* When you change address of girl the address of boy is also changed.
* This happens only to the objects inside objects because its passed with reference.
* To get this working add an init method and reinitialize all the properties with new values
* Reinitialise objects with objects and return (this)
* http://www.bennadel.com/blog/2184-object-create-improves-constructor-based-inheritance-in-javascript---it-doesn-t-replace-it.htm
* */
girl.address.street = "K.P.K";
girl.address.houseNo = 33;
console.log(boy.getName(), boy.getStreet(), boy.getHouseNo());
/**
* Functional inheritance
* http://stackoverflow.com/questions/2800964/benefits-of-prototypal-inheritance-over-classical
* @param options
* @returns {{}}
* @constructor
*/
function Human (options) {
var that = {};
that.name = options.name;
that.age = options.age;
that.getName = function () {
return this.name;
};
that.getAge = function () {
return this.age;
};
return that;
}
function Man (options) {
var that = Human(options);
that.getMansName = function () {
return "Man's name - " + this.getName();
};
return that;
}
function Woman (options) {
var that = Human(options);
that.getWomansName = function () {
return "Woman's name - " + this.getName();
};
return that;
}
var human = Human({name: "Human", age: 1});
console.log(human.getName(), human.getAge());
var man = Man({name: "Man", age: 33});
console.log(man.getName(), man.getAge(), man.getMansName());
var woman = Woman({name: "Woman", age: 25});
console.log(woman.getName(), woman.getAge(), woman.getWomansName());
/**
* Closure example
* @param name
* @constructor
*/
function Company (name) {
this.name = name;
var licenceId = name + "#23DXRGT295839X";
this.getLicenceId = function () {
/**
* This function creates a closure
* It has access to the local variable licenceId in the function Company
*/
return licenceId;
};
};
var google = new Company("Google");
console.log(google.getLicenceId());
var a;
console.log(a);
console.log("asdf");
/**
* Currying
* */
function greet (greeting) {
return function (name) {
return function lastCharacter (character) {
console.log(greeting + " " + name + " " + character);
};
};
};
greet("hello")("Shyam")(".");
var greetHello = greet("Hello");
var greetGoodBye = greet("Good Bye");
greetHello("Vishesh")("!");
greetGoodBye("Shyam")("!!!");
/**
* Memoization
* This method requirs a global variable to hold the cache
* */
var cache = {};
function addTen (x) {
var key = x.toString();
var value = null;
if (cache[key]) {
value = cache[key];
console.log("returning from cache " + value);
} else {
// Expensive operation :)
value = x + 10;
cache[key] = value;
console.log("Storing result in cache " + value);
}
return value;
}
addTen(10);
addTen(1);
addTen(10);
addTen(20);
addTen(1);
function memoize20 () {
var cache = {};
return function (x) {
var key = x.toString();
var value = null;
if (cache[key]) {
value = cache[key];
console.log("returning from cache " + value);
} else {
// Expensive operation :)
value = x + 20;
cache[key] = value;
console.log("Storing result in cache " + value);
}
return value;
};
}
console.log("Memoize 20 20 20 20 20 20 20 20");
var add20 = memoize20();
add20(10);
add20(1);
add20(10);
add20(20);
add20(1);
console.log("Memoize multiple...... ###################");
var memoizeMultiple = function () {
var slice = Array.prototype.slice;
var cache = {};
var value = null;
return function (x, y) {
var args = slice.call(arguments);
var key = args.toString();
if (cache[key]) {
value = cache[key];
console.log("returning from cache " + value);
} else {
// Expensive operation :)
value = x + y;
cache[key] = value;
console.log("Storing result in cache " + value);
}
return value;
};
};
var memoizeTwoNumbers = memoizeMultiple();
memoizeTwoNumbers(10, 20);
memoizeTwoNumbers(20, 20);
memoizeTwoNumbers(10, 20);
memoizeTwoNumbers(30, 20);
memoizeTwoNumbers(20, 20);
console.log("Generalized memoization ################");
function memoize (func) {
var slice = Array.prototype.slice;
var cache = {};
var value = null;
return function () {
var args = slice.call(arguments);
var key = args.toString();
if (cache[key]) {
value = cache[key];
console.log("returning from cache " + value);
} else {
// Expensive operation :)
value = func.call(this, args);
cache[key] = value;
console.log("Storing result in cache " + value);
}
return value;
};
}
var addOne = function (x) {
x = parseInt(x);
return x + 1;
};
var addOneMemoized = memoize(addOne);
addOneMemoized(10);
addOneMemoized(11);
addOneMemoized(10);
addOneMemoized(12);
addOneMemoized(11);
/* var {foo} = {foo: 'bar'};
function es({a, b, c}) {
console.log(a, b, c);
}
es({a: 10, b: 5, c: 10});*/
/**
* Mixins
* */
var rectangle = {
setWidth: function (w) {
console.log("Setting width");
this.width = w;
},
getWidth: function () {
return this.width;
},
setHeight: function (h) {
console.log("Setting height");
this.height = h;
},
getHeight: function () {
return this.height;
},
draw: function () {
console.log("Drawing rectangle");
}
};
var button = {
setLink: function (link) {
console.log("Setting link " + link);
this.link = link;
}
};
var clickControl = {
onClick: function (cb) {
console.log("Clicked: Redirecting to link " + this.link);
cb();
}
};
function RectangleButton (w, h, link, callback) {
this.setWidth(w);
this.setHeight(h);
this.setLink(link);
this.onClick(callback);
};
extend(RectangleButton.prototype, rectangle);
extend(RectangleButton.prototype, button);
extend(RectangleButton.prototype, clickControl);
function extend (destination, source) {
for (var prop in source) {
if (source.hasOwnProperty(prop)) {
destination[prop] = source[prop];
}
}
}
function facebookWebPage () {
console.log("Reached facebook web page");
}
var rectangleButton = new RectangleButton(10, 20, "www.facebook.com", facebookWebPage);
/**
* Factory
* */
function Bus () {
this.type = "Bus";
}
function Car () {
this.type = "Car";
}
var factoryMapping = {
"bus": Bus,
"car": Car
};
function vehicleFactory (param) {
var theClass = factoryMapping[param];
return new theClass();
}
var bus = vehicleFactory("bus");
var car = vehicleFactory("car");
console.log(bus.type);
console.log(car.type);
/**
* IIFE
* */
/* function printCounter() {
for (var i = 0; i < 5; i++) {
setTimeout(function () {
console.log(i);
}, 1000);
}
}
printCounter();
function iifeCounter() {
for (var i = 0; i < 5; i++) {
(function (j) {
setTimeout(function () {
console.log(j);
},1000);
})(i)
}
}
iifeCounter();
*/
var car = {
wheels: 4
};
function carDetails (paramOne, paramTwo, paramThree) {
console.log("Wheels :" + this.wheels);
console.log(paramOne);
console.log(paramTwo);
console.log(paramThree);
}
carDetails.call(car, "Benz", "White color", "New Model");
carDetails.apply(car, ["Jaguar", "Black color", "Old Model"]);
var ford = carDetails.bind(car, "Ford", "Green Color");
ford("Latest Model");
/**
* ES6 Classes
* */
class Polygon {
constructor (width, height) {
this.width = width;
this.height = height;
}
get area () {
return this.calculateArea();
}
calculateArea () {
return this.width * this.height;
}
static printName () {
console.log("I am a polygon");
}
}
var rectangle = new Polygon(4, 3);
console.log("Area of rectangle is " + rectangle.area);
Polygon.printName();
class Animal {
constructor (name) {
this.name = name;
}
speak () {
console.log("I am gonna make some noise");
}
}
class Dog extends Animal {
speak () {
super.speak();
console.log("Bow Bow");
}
}
var dog = new Dog();
dog.speak();
/**
* With Arrow function
* */
/* function House() {
this.address = "xyz";
setTimeout(() => {
console.log(this.address)
})
}
var x = new House();*/
/**
* Without Arrow functions
*
* */
/* function House() {
this.address = "xyz";
var self = this;
setTimeout(function printAddress() {
console.log(self.address)
})
}*/
// var x = new House();
let nameSymbol = Symbol("name");
class Person {
constructor (name) {
this[nameSymbol] = name;
}
get name () {
return this[nameSymbol];
}
}
var john = new Person("John Samuel");
console.log(john.name);
var x = Object.getOwnPropertySymbols(john);
console.log(x);