-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbind.js
34 lines (28 loc) · 928 Bytes
/
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
function welcomeNewUser(greeting, company_name) {
console.log(`${greeting} ${this.name} from ${company_name}`);
}
const persone = {
name: "Vadym",
};
const persone1 = {
name: "Vasyl",
};
function my_bind(fn, context, ...firstArgs) {
return function (...args) {
return fn.call(context, ...[...firstArgs, ...args])
}
}
Function.prototype.myBind = function(context, ...firstArgs) {
const func = this;
return function(...args){
return func.call(context, ...[...firstArgs, ...args]);
};
};
// simple function realization
let vadymGreeting = my_bind(welcomeNewUser, persone, "Hello");
console.log(vadymGreeting("EPAM"));
console.warn("-------------------------------------------");
console.log(my_bind(welcomeNewUser, persone1, "Hi")("IHS"));
// Function.prototype realization
let olegGreeting = welcomeNewUser.myBind({name: "Oleg"}, "Hi");
console.log(olegGreeting("Facebook"));