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

20 lines
172 B
Markdown

importance: 5
---
# Bound function as a method
What will be the output?
```js
function f() {
alert( this ); // ?
}
var user = {
g: f.bind(null)
};
user.g();
```