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);