-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply&call.js
43 lines (38 loc) · 828 Bytes
/
apply&call.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
//example-1
redLight = {
color: 'red'
};
blueLight = {
color: 'blue'
};
color = 'white';
function Light(mode, time) {
console.log(`Lighting --- use color ${this.color} in mode ${mode} at ${time}`);
};
Light();
Light.call(redLight, 'low', 'daylight')
Light.apply(blueLight, ['high', 'night'])
//example-2
function myAdd(a, b) {
console.log(`${a} + ${b} = ${a + b}`);
return a + b;
};
myAdd.call(myAdd, 1, 2);
myAdd.call(myAdd, ...[1,2]);
myAdd.apply(myAdd, [1,2]);
myAdd(...[1,2]);
//example-3
Math.max(1,2,3,4,5);
Math.max(...[1,2,3,4,5]);
Math.max.call(Math, [1,2,3,4,5]);
//example-4
function Person(name = 'Anonymous', gender = 'unknow') {
this.name = name;
this.gender = gender;
}
Person.prototype.hello = function() {
console.log(`${this.name} said hello`)
}
let p1 = {}
Person.call(p1)
console.log(p1)