Skip to content

Commit 87c7b45

Browse files
authored
Merge pull request #1461 from Violet-Bora-Lee/patch-44
Update solution.md
2 parents 13ca92d + 1fcefe3 commit 87c7b45

File tree

1 file changed

+1
-1
lines changed
  • 1-js/99-js-misc/01-proxy/01-error-nonexisting

1 file changed

+1
-1
lines changed

1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ function wrap(target) {
1919
user = wrap(user);
2020

2121
alert(user.name); // John
22-
alert(user.age); // Error: Property doesn't exist
22+
alert(user.age); // ReferenceError: Property doesn't exist
2323
```

0 commit comments

Comments
 (0)