Skip to content

Commit 1fcefe3

Browse files
Update solution.md
1 parent 13ca92d commit 1fcefe3

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)