From cedd3ed9ad6a8fe94e449e87ca3f0a730e975d9d Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 19 Feb 2020 00:01:22 +0000 Subject: [PATCH] closes #1742 --- 1-js/99-js-misc/01-proxy/article.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1-js/99-js-misc/01-proxy/article.md b/1-js/99-js-misc/01-proxy/article.md index dcbcfa87..e775ed18 100644 --- a/1-js/99-js-misc/01-proxy/article.md +++ b/1-js/99-js-misc/01-proxy/article.md @@ -4,6 +4,8 @@ A `Proxy` object wraps another object and intercepts operations, like reading/wr Proxies are used in many libraries and some browser frameworks. We'll see many practical applications in this article. +## Proxy + The syntax: ```js