diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/glossary/method | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/ko/glossary/method')
-rw-r--r-- | files/ko/glossary/method/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/files/ko/glossary/method/index.html b/files/ko/glossary/method/index.html new file mode 100644 index 0000000000..d994f9b1ae --- /dev/null +++ b/files/ko/glossary/method/index.html @@ -0,0 +1,40 @@ +--- +title: Method +slug: Glossary/Method +translation_of: Glossary/Method +--- +<p>메소드(<strong>method)</strong>는 {{glossary("object","객체")}}의 {{glossary("property", "속성")}}인 {{glossary("function", "함수")}}이다. 두 가지 종류의 메소드가 있다. 객체 인스턴스에 의해 수행되는 태스크에 내장된 인스턴스 메소드 또는 오브젝트 생성자에서 직접 호출되는 태스크인 <em>{{Glossary("static method", "정적 메소드")}}</em>가 여기에 해당된다.</p> + +<div class="note"> +<p><strong>참고:</strong> 자바스크립트 함수에서 그 자체는 객체이므로, 그런 맥락에서 메소드는 실제로 함수에 대한 객체 {{glossary("object reference", "참조")}}인 것이다.</p> +</div> + +<h2 id="더_알아보기">더 알아보기</h2> + +<h3 id="이것에_대해_알아보기">이것에 대해 알아보기</h3> + +<ul> + <li>Wikipedia의 {{InterWiki("wikipedia","Method (computer programming)")}} </li> + <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions">JavaScrip에서 메소드의 정의</a> (comparison of the traditional syntax and the new shorthand)</li> +</ul> + +<h3 id="기술적_참조">기술적 참조</h3> + +<ul> + <li><a href="/en-US/docs/Web/JavaScript/Reference/Methods_Index">List of JavaScript built-in methods</a></li> +</ul> + +<section class="Quick_links" id="Quick_Links"> +<ul> + <li><a href="/en-US/docs/Glossary">MDN Web Docs Glossary</a> + + <ul> + <li>{{Glossary("function")}}</li> + <li>{{Glossary("object")}}</li> + <li>{{Glossary("property")}}</li> + <li>{{Glossary("static method")}}</li> + </ul> + </li> + <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions">Defining a method in JavaScript</a></li> +</ul> +</section> |