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