diff options
author | 3indblown Leaf <69508345+kraccoon-dev@users.noreply.github.com> | 2022-02-06 21:23:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 21:23:25 +0900 |
commit | ac6c8ad8b2f961b5474f47339096b8e59d11cb2e (patch) | |
tree | 3c7ad8af1ac1e06ba0c077922f57564dabfaa2d1 /files/ko/web/javascript/guide/meta_programming | |
parent | 7669d75d4693a4ee5e500fbe21716fb437adb3d6 (diff) | |
download | translated-content-ac6c8ad8b2f961b5474f47339096b8e59d11cb2e.tar.gz translated-content-ac6c8ad8b2f961b5474f47339096b8e59d11cb2e.tar.bz2 translated-content-ac6c8ad8b2f961b5474f47339096b8e59d11cb2e.zip |
remove all summary class in javascript (#4015)
Diffstat (limited to 'files/ko/web/javascript/guide/meta_programming')
-rw-r--r-- | files/ko/web/javascript/guide/meta_programming/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/guide/meta_programming/index.html b/files/ko/web/javascript/guide/meta_programming/index.html index 9b84db0876..ec5686f9ce 100644 --- a/files/ko/web/javascript/guide/meta_programming/index.html +++ b/files/ko/web/javascript/guide/meta_programming/index.html @@ -6,7 +6,7 @@ original_slug: Web/JavaScript/Guide/메타_프로그래밍 --- <div>{{jsSidebar("JavaScript Guide")}} {{Previous("Web/JavaScript/Guide/Iterators_and_Generators")}}</div> -<p class="summary">Starting with ECMAScript 2015, JavaScript gains support for the {{jsxref("Proxy")}} and {{jsxref("Reflect")}} objects allowing you to intercept and define custom behavior for fundamental language operations (e.g. property lookup, assignment, enumeration, function invocation, etc). With the help of these two objects you are able to program at the meta level of JavaScript.</p> +<p >Starting with ECMAScript 2015, JavaScript gains support for the {{jsxref("Proxy")}} and {{jsxref("Reflect")}} objects allowing you to intercept and define custom behavior for fundamental language operations (e.g. property lookup, assignment, enumeration, function invocation, etc). With the help of these two objects you are able to program at the meta level of JavaScript.</p> <h2 id="Proxies">Proxies</h2> |