en.javascript.info/1-js/8-more-functions/09-bind/2-write-to-object-after-bind/task.md
Ilya Kantor f99574f53b up
2016-11-14 16:31:21 +03:00

172 B

importance: 5


Bound function as a method

What will be the output?

function f() {
  alert( this ); // ?
}

var user = {
  g: f.bind(null)
};

user.g();