aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/operators/destructuring_assignment
diff options
context:
space:
mode:
authoralattalatta <urty5656@gmail.com>2021-08-14 15:57:42 +0900
committerGitHub <noreply@github.com>2021-08-14 15:57:42 +0900
commit86792571ae1a21a1e4bf526747d6dd1c2636d167 (patch)
treec8cabac7926ab152ce22d07e4670fcb90943d61a /files/ko/web/javascript/reference/operators/destructuring_assignment
parenta04c78de5e61e8b716173968d63f6113a09651bd (diff)
downloadtranslated-content-86792571ae1a21a1e4bf526747d6dd1c2636d167.tar.gz
translated-content-86792571ae1a21a1e4bf526747d6dd1c2636d167.tar.bz2
translated-content-86792571ae1a21a1e4bf526747d6dd1c2636d167.zip
Clean up JS reference documents (#1818)
* Clean up JavaScript references HTML code - Remove inline styles - Remove <font> elements - Remove title attribute * Remove sup/sub from JavaScript reference * Remove name attrs from JavaScript reference * Remove legacy browser compat elements * Remove duplicate browser-compat key
Diffstat (limited to 'files/ko/web/javascript/reference/operators/destructuring_assignment')
-rw-r--r--files/ko/web/javascript/reference/operators/destructuring_assignment/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/javascript/reference/operators/destructuring_assignment/index.html b/files/ko/web/javascript/reference/operators/destructuring_assignment/index.html
index aae1bd3e00..e367513864 100644
--- a/files/ko/web/javascript/reference/operators/destructuring_assignment/index.html
+++ b/files/ko/web/javascript/reference/operators/destructuring_assignment/index.html
@@ -341,7 +341,7 @@ whois(user); // "jdoe is John"</pre>
<h3 id="계산된_속성_이름과_구조_분해">계산된 속성 이름과 구조 분해</h3>
-<p>계산된 속성 이름(computed property name)은, <a href="/ko/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names" title="object literals">객체 리터럴</a>과 비슷하게 구조 분해에도 사용될 수 있습니다.</p>
+<p>계산된 속성 이름(computed property name)은, <a href="/ko/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names">객체 리터럴</a>과 비슷하게 구조 분해에도 사용될 수 있습니다.</p>
<pre class="brush: js">let key = "z";
let { [key]: foo } = { z: "bar" };
@@ -404,6 +404,6 @@ console.log(fizzBuzz); // "true"
<h2 id="같이_보기">같이 보기</h2>
<ul>
- <li><a href="/ko/docs/Web/JavaScript/Reference/Operators/Assignment_Operators" title="Assignment operators">할당 연산자</a></li>
+ <li><a href="/ko/docs/Web/JavaScript/Reference/Operators/Assignment_Operators">할당 연산자</a></li>
<li><a href="https://hacks.mozilla.org/2015/05/es6-in-depth-destructuring/">"ES6 in Depth: Destructuring" on hacks.mozilla.org</a></li>
</ul>