Skip to content

Commit 0de5046

Browse files
authored
Update solution.md
1 parent d43276a commit 0de5046

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/04-object-basics/04-object-methods/4-object-property-this

1-js/04-object-basics/04-object-methods/4-object-property-this/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function makeUser(){
3131

3232
alert( makeUser().name ); // Error: Cannot read property 'name' of undefined
3333
```
34-
As you can see the result of `alert( makeUser().name )` is the same as `alert( user.ref.name )`
34+
As you can see the result of `alert( makeUser().name )` is the same as the result of `alert( user.ref.name )` from the previous example.
3535

3636
Here's the opposite case:
3737

0 commit comments

Comments
 (0)