-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcall-method.js
51 lines (47 loc) · 861 Bytes
/
call-method.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
let message = {
type: "email",
to: "labib",
from: "pain",
email: {
type: "Electronic Mail",
subject: "study",
msg: function () {
console.log(`Message received as ${this.type}`);
},
},
};
message.email.msg();
message.email.msg.call(message);
console.log("---------------------");
var numbers = [
{
name: "Physician",
},
{
name: "Police",
},
{
name: "Tablespoon",
},
];
numbers.forEach(function (item) {
(function () {
console.log(this.name);
}.call(item));
});
console.log("---------------------");
let zakir = {
fullName: "Zakir Hossian",
dob: 1994,
age: function (currentYear) {
console.log(
this.fullName + " is " + (currentYear - this.dob) + " years old"
);
},
};
zakir.age(2021);
let shuvo = {
fullName: "Shuvo Islam",
dob: 1998,
};
zakir.age.call(shuvo, 2020);