aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/oop/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/glossary/oop/index.html')
-rw-r--r--files/ko/glossary/oop/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/files/ko/glossary/oop/index.html b/files/ko/glossary/oop/index.html
new file mode 100644
index 0000000000..c4e3cf8d19
--- /dev/null
+++ b/files/ko/glossary/oop/index.html
@@ -0,0 +1,17 @@
+---
+title: OOP
+slug: Glossary/OOP
+translation_of: Glossary/OOP
+---
+<p><strong>OOP </strong>(객체 지향적 프로그래밍) 는 데이터가 <strong>{{glossary("object","객체")}}</strong> 내에 캡슐화되고 구성 요소 부분이 아닌 객체 자체가 운용되는 프로그래밍 방식이다</p>
+
+<p>{{glossary("JavaScript")}} 는 매우 객체 지향적인 언어이다. JavaScript는  <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Details_of_the_Object_Model#Class-based_vs._prototype-based_languages">클래스 기반의 것과는 대조적으로</a> <strong>프로토타입 </strong>기반의 모델을 따른다 .</p>
+
+<h2 id="더_알아보기">더 알아보기</h2>
+
+<h3 id="일반적인_지식">일반적인 지식</h3>
+
+<ul>
+ <li>Wikipedia 의 {{Interwiki("wikipedia", "Object-oriented programming")}} </li>
+ <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Introduction_to_Object-Oriented_JavaScript">Introduction to object-oriented JavaScript</a></li>
+</ul>