We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d04fbf4 + 8ab07e1 commit 4496439Copy full SHA for 4496439
1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md
@@ -19,5 +19,5 @@ function wrap(target) {
19
user = wrap(user);
20
21
alert(user.name); // John
22
-alert(user.age); // ReferenceError: Property doesn't exist
+alert(user.age); // ReferenceError: Property doesn't exist "age"
23
```
1-js/99-js-misc/01-proxy/01-error-nonexisting/task.md
@@ -27,6 +27,6 @@ user = wrap(user);
27
28
29
*!*
30
-alert(user.age); // Error: Property doesn't exist
31
*/!*
32
0 commit comments