aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/glossary/oop/index.html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:58 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:58 +0100
commit68fc8e96a9629e73469ed457abd955e548ec670c (patch)
tree8529ab9fe63d011f23c7f22ab5a4a1c5563fcaa4 /files/pt-br/glossary/oop/index.html
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.gz
translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.bz2
translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.zip
unslug pt-br: move
Diffstat (limited to 'files/pt-br/glossary/oop/index.html')
-rw-r--r--files/pt-br/glossary/oop/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/files/pt-br/glossary/oop/index.html b/files/pt-br/glossary/oop/index.html
new file mode 100644
index 0000000000..edfde266bf
--- /dev/null
+++ b/files/pt-br/glossary/oop/index.html
@@ -0,0 +1,17 @@
+---
+title: OOP
+slug: Glossario/OOP
+translation_of: Glossary/OOP
+---
+<p><strong>OOP </strong>(Object-Oriented Programming) é uma abordagem na programação em qual os dados são encapsulados em <strong>{{glossary("object","objects")}}</strong> e o proprio objeto é operado, em vez de suas partes componentes.</p>
+
+<p>{{glossary("JavaScript")}} é altamente orientado à objeto. Isto segue um modelo baseado em <strong>prototypes</strong> (<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Details_of_the_Object_Model#Class-based_vs._prototype-based_languages">as opposed to class-based</a>).</p>
+
+<h2 id="Aprenda_mais">Aprenda mais</h2>
+
+<h3 id="Conhecimento_geral">Conhecimento geral</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Object-oriented programming")}} no Wikipedia</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>