23 lines
307 B
Markdown
23 lines
307 B
Markdown
importance: 5
|
|
|
|
---
|
|
|
|
# Using "this" in object literal
|
|
|
|
Here the function `makeUser` returns an object.
|
|
|
|
What is the result of accessing its `ref`? Why?
|
|
|
|
```js
|
|
function makeUser() {
|
|
return {
|
|
name: "John",
|
|
ref: this
|
|
};
|
|
};
|
|
|
|
let user = makeUser();
|
|
|
|
alert( user.ref.name ); // What's the result?
|
|
```
|
|
|