
Fix #2068 - Army of Functions Fix #2070 - Typo Fix #2056 - Grammatical Error Fix #2074 - Remove semi-colon after function declaration
306 B
306 B
importance: 5
Using "this" in object literal
Here the function makeUser
returns an object.
What is the result of accessing its ref
? Why?
function makeUser() {
return {
name: "John",
ref: this
};
}
let user = makeUser();
alert( user.ref.name ); // What's the result?