-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply-call-bind.js
137 lines (94 loc) · 3.71 KB
/
apply-call-bind.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
/* apply, call and bind */
//purpose of call()(FUNCTION BORROWING)
//problem statement:-
/*
//create object
let userdetails={
name:"VC", age:33,
pro:"AE",
//create a function which will print details
printdetails: function(){
console.log(this.name) //we use this keyword to point the objects and objects properties
}
}
userdetails.printdetails();
let userdetails2={
name:"CC", age:23,
pro:"AEE",
}
//here, the purpose of both the functions is same i.e printing out the names so now we use call() to point the first function printdetails to the second function details
//call userdetails with call()
userdetails.printdetails.call(userdetails2); //here because of this line the console.log(this.name) points towards the both functions name property(FUNCTION BORROWING)*/
//Example for call
/*let userdetails={
name:"VC", age:33,
pro:"AE",
//create a function which will print details
}
//create a function which will printdetails for both the functions, this function is outside of the other functions
printdetails= function(){
console.log(this.name) //we use this keyword to point the objects and objects properties
}
//call the call() method here
printdetails.call(userdetails);
let userdetails2={
name:"CC", age:23,
pro:"AEE",
}
printdetails.call(userdetails2);*/
//Example:-
/*let userdetails={
name:"VC", age:33,
pro:"AE",
}
//For new parameter passed(DELHI and UDAIPUR) put STATE in function and this
printdetails= function(state,country){
console.log(this.name+ " " + state+" " +country) //we use this keyword to point the objects and objects properties
}
//call the call() method here
printdetails.call(userdetails, "Udaipur","india"); //pass the new para.. here
let userdetails2={
name:"CC", age:23,
pro:"AEE",
}
printdetails.call(userdetails2, "Delhi","india");*/ //pass the new parameter here
//Purpose of Apply:-
//if sometimes we want pass a new parameter we use apply method
//just put APPLY() in the place of CALL()
//Example(call() and apply() are the same only with slight difference for APPLY() PASS ALL THE NEW PARAMETERS IN ARRAY LIST.\ instead of passing one-by-one.
/*let userdetails={
name:"VC", age:33,
pro:"AE",
}
//For new parameter passed(DELHI and UDAIPUR) put STATE and for (india) put country in function and this
printdetails= function(state,country){
console.log(this.name+ " " + state+" " +country) //we use this keyword to point the objects and objects properties
}
//call the APPLY() method here
printdetails.apply(userdetails, ["Udaipur","india"]); //pass the new para.. here
let userdetails2={
name:"CC", age:23,
pro:"AEE",
}
printdetails.apply(userdetails2, ["Delhi","india"]);*/ //pass the new parameter here
//Purpose of BIND():-it is similar to the call() but in BIND() we don't call the function directly(printdetails.call(userdetails,"delhi","india")), instead make a COPY of that function and INVOKE/call it whenever need.
//USE LET NEWFUN=PRINTDETAILS.BIND(USERDETAILS,"DELHI","INDIA") and console.log(newfun())
//Example:-
let userdetails={
name:"VC", age:33,
pro:"AE",
}
//For new parameter passed(DELHI,Udaipur) put STATE and (india) put country in function and this
printdetails= function(state,country){
console.log(this.name+ " " + state+" " +country) //we use this keyword to point the objects and objects properties
}
//call the BIND() method here
/*let newfun= printdetails.bind(userdetails, ["Udaipur","india"]); //pass the new para.. here
console.log(newfun());*/
let userdetails2={
name:"CC", age:23,
pro:"AEE",
}
//do the same here for BIND()
let myfun= printdetails.bind(userdetails, "Delhi","india");
console.log(myfun());