diff options
author | Yunwoo Ji <unu12073@gmail.com> | 2021-07-19 19:50:26 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 19:50:26 +0900 |
commit | d1006c7ecb687d6dfde0e32ac3b1567280fa3051 (patch) | |
tree | 485f4584c29c3a3d1de38163b0297d4d337cc8c3 /files/ko/learn | |
parent | 6a05e0a63c48c99515e7ff7be901f1104bae317c (diff) | |
download | translated-content-d1006c7ecb687d6dfde0e32ac3b1567280fa3051.tar.gz translated-content-d1006c7ecb687d6dfde0e32ac3b1567280fa3051.tar.bz2 translated-content-d1006c7ecb687d6dfde0e32ac3b1567280fa3051.zip |
Fix typo (#1602)
Diffstat (limited to 'files/ko/learn')
-rw-r--r-- | files/ko/learn/javascript/objects/object_prototypes/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/learn/javascript/objects/object_prototypes/index.html b/files/ko/learn/javascript/objects/object_prototypes/index.html index f2eaf03498..132036a83a 100644 --- a/files/ko/learn/javascript/objects/object_prototypes/index.html +++ b/files/ko/learn/javascript/objects/object_prototypes/index.html @@ -122,7 +122,7 @@ translation_of: Learn/JavaScript/Objects/Object_prototypes <p><code>myString</code> 인스턴스가 생성되는 즉시 <code><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/String/split">split()</a></code>, <code><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf">indexOf()</a></code>, <code><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/String/replace">replace()</a></code>등의 문자열을 위한 유용한 메소드들을 사용할 수 있는 이유입니다.</p> <div class="warning"> -<p><strong>Important</strong>: <code>prototype</code> 속성은 Javascript에서 가장 헷갈리는 명칭중 하나입니다. — 보통 <code>this</code>가 현재 객체의 프로토타입 객체를 가리킬 것이라 오해하지만 그렇지 않죠. (프로토타입 객체는 <code>__proto__</code> 속성으로 접근 가능한 내장 객체인 것 기억 하시나요?). 대신에 <code>prototyp</code>e 속성은 상속 시키려는 멤버들이 정의된 객체를 가리킵니다.</p> +<p><strong>Important</strong>: <code>prototype</code> 속성은 Javascript에서 가장 헷갈리는 명칭중 하나입니다. — 보통 <code>this</code>가 현재 객체의 프로토타입 객체를 가리킬 것이라 오해하지만 그렇지 않죠. (프로토타입 객체는 <code>__proto__</code> 속성으로 접근 가능한 내장 객체인 것 기억 하시나요?). 대신에 <code>prototype</code> 속성은 상속 시키려는 멤버들이 정의된 객체를 가리킵니다.</p> </div> <h2 id="create()_다시보기">create() 다시보기</h2> |