-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththis-keyword.js
75 lines (51 loc) · 1.17 KB
/
this-keyword.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
var car = {
make: "bmw",
model: "10101",
year: 2010,
getPrice: function () {
//perform some calculation
return 5000;
},
printDescription: function() {
console.log(this.make + ' ' + this.model);
}
}
console.log(car.printDescription());
function first() {
return this;
}
console.log(first() === global);
/* */
function second() {
"use strict";
return this;
}
console.log(second() === global);
/* */
let myobject = {value: 'my object'};
//value is set on the global object
global.value = "Global object";
function third() {
return this.value;
}
console.log(third());
//the call and apply keywords tells the node runtime to call or apply a name insteas of the function that should be called
console.log(third.call(myobject, 'bob'));
console.log(third.apply(myobject, ['meek']));
console.log(third.apply(myobject));
/* */
function fifth() {
console.log(this.firstname + " " + this.lastname);
}
let customer1 = {
firstname: "Rob",
lastname: "rick",
print: fifth
}
let customer2 = {
firstname: "nick",
lastname: "robben",
print: fifth
}
customer1.print();
customer2.print();