bind
by Artem
JavaScript
'use strict';
const user = {
name: 'Artem'
};
function getName() {
console.log(this.name);
}
const bindable = Function.prototype.call.bind(getName);
bindable(user);
by Artem
'use strict';
const user = {
name: 'Artem'
};
function getName() {
console.log(this.name);
}
const bindable = Function.prototype.call.bind(getName);
bindable(user);