en.javascript.info/01-js/06-objects-more/05-bind/02-write-to-object-after-bind/task.md
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

203 B

Запись в объект после bind

[importance 5]

Что выведет функция?

function f() {
  alert( this );
}

var user = {
  g: bind(f, "Hello")
}
      
user.g();