From 1fcefe33387ca63a44c96edc048a8e632b26bab2 Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Wed, 16 Oct 2019 06:13:27 +0900 Subject: [PATCH] Update solution.md --- 1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md b/1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md index 099664a1..64895853 100644 --- a/1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md +++ b/1-js/99-js-misc/01-proxy/01-error-nonexisting/solution.md @@ -19,5 +19,5 @@ function wrap(target) { user = wrap(user); alert(user.name); // John -alert(user.age); // Error: Property doesn't exist +alert(user.age); // ReferenceError: Property doesn't exist ```