aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/operators/object_initializer/index.html
diff options
context:
space:
mode:
authorYeji Choi <61399588+yechoi42@users.noreply.github.com>2021-07-18 22:58:53 +0900
committerGitHub <noreply@github.com>2021-07-18 22:58:53 +0900
commit619211e9ba8a68c9d5de346dfc73fa0686c9148d (patch)
tree8c979eccdb1ba64e1b314ea2ab542ae3e6262c2e /files/ko/web/javascript/reference/operators/object_initializer/index.html
parent53fb7c6f1f2f22f558b4a5b9af867767ecfeddfd (diff)
downloadtranslated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.tar.gz
translated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.tar.bz2
translated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.zip
fix: delete wiki.mozilla.org from ko files (#1567)
* fix: delete wiki.mozilla.org from ko/learn files * fix: delete wiki.mozilla.org from ko/glossary files * fix: remove wiki * fix: remove python script file 잘못올렸습니다.. ㅠ * Update files/ko/web/html/attributes/index.html Co-authored-by: hochan222 <hochan049@gmail.com>
Diffstat (limited to 'files/ko/web/javascript/reference/operators/object_initializer/index.html')
-rw-r--r--files/ko/web/javascript/reference/operators/object_initializer/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/javascript/reference/operators/object_initializer/index.html b/files/ko/web/javascript/reference/operators/object_initializer/index.html
index 21669048a6..6040804e5f 100644
--- a/files/ko/web/javascript/reference/operators/object_initializer/index.html
+++ b/files/ko/web/javascript/reference/operators/object_initializer/index.html
@@ -215,7 +215,7 @@ console.log(config); // { size: 12, mobileSize: 4 }</pre>
<h3 id="전개_속성">전개 속성</h3>
-<p><a href="https://github.com/tc39/proposal-object-rest-spread">ECMASCript의 나머지/전개 속성</a> 제안 (stage 4) 으로 <a href="https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator">전개(spread)</a> 속성이 객체 리터럴에 추가됩니다. 이 속성은 제공된 객체의 열거 가능한(enumerable) 속성을 새 객체로 복사합니다.</p>
+<p><a href="https://github.com/tc39/proposal-object-rest-spread">ECMASCript의 나머지/전개 속성</a> 제안 (stage 4) 으로 <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator">전개(spread)</a> 속성이 객체 리터럴에 추가됩니다. 이 속성은 제공된 객체의 열거 가능한(enumerable) 속성을 새 객체로 복사합니다.</p>
<p>(<code>prototype</code>을 제외하는) 얕은 복제(Shallow-cloning) 나 객체 합침(merging objects)이 이제{{jsxref("Object.assign()")}} 보다 짧은 문법으로 가능해집니다.</p>
@@ -229,7 +229,7 @@ let mergedObj = { ...obj1, ...obj2 }
// Object { foo: "baz", x: 42, y: 13 }</pre>
<div class="blockIndicator warning">
-<p>{{jsxref("Object.assign()")}}는 <a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Functions/set">setters</a>를 작동시키지만, 전개 연산자(spread operator)는 아니라는 걸 주목하세요!</p>
+<p>{{jsxref("Object.assign()")}}는 <a href="/ko/docs/Web/JavaScript/Reference/Functions/set">setters</a>를 작동시키지만, 전개 연산자(spread operator)는 아니라는 걸 주목하세요!</p>
</div>
<h3 id="프로토타입_변이">프로토타입 변이</h3>