aboutsummaryrefslogtreecommitdiff
path: root/files/ca/glossary/oop/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ca/glossary/oop/index.html')
-rw-r--r--files/ca/glossary/oop/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/files/ca/glossary/oop/index.html b/files/ca/glossary/oop/index.html
new file mode 100644
index 0000000000..924f2b056d
--- /dev/null
+++ b/files/ca/glossary/oop/index.html
@@ -0,0 +1,21 @@
+---
+title: OOP
+slug: Glossary/OOP
+tags:
+ - Beginner
+ - CodingScripting
+ - Glossary
+translation_of: Glossary/OOP
+---
+<p><strong>OOP </strong>(Object-Oriented Programming ) és un enfocament de programació en el qual s'encapsulan les dades dins de <strong>{{glossary("object","objectes")}}</strong> i l'objecte mateix és operat, en lloc dels seus components.</p>
+
+<p>{{Glossary("JavaScript")}} està fortament orientat a objectes. D'això es dedueix un model basat en prototipus (<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Details_of_the_Object_Model#Class-based_vs._prototype-based_languages">en oposició a la classe de base</a>).</p>
+
+<h2 id="Aprèn_més">Aprèn més</h2>
+
+<h3 id="Coneixement_general"><span id="result_box" lang="ca"><span>Coneixement general</span></span></h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Programació Orientada a Objectes")}} en Wikipedia</li>
+ <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Introduction_to_Object-Oriented_JavaScript">Introducció a JavaScript orientat a objectes</a></li>
+</ul>