aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/glossary/variable/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/variable/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/variable/index.html')
-rw-r--r--files/pt-br/glossary/variable/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/files/pt-br/glossary/variable/index.html b/files/pt-br/glossary/variable/index.html
new file mode 100644
index 0000000000..6daf0decae
--- /dev/null
+++ b/files/pt-br/glossary/variable/index.html
@@ -0,0 +1,24 @@
+---
+title: Variável
+slug: Glossario/Variável
+tags:
+ - JavaScript
+ - Programando
+translation_of: Glossary/Variable
+---
+<p>Uma<strong> variável (variable) </strong>é um local nomeado para armazenar um {{Glossary("Valor", "valor")}}. Dessa forma, um valor pode ser acessado através de um nome predeterminado.</p>
+
+<h2 id="Leia_mais">Leia mais</h2>
+
+<h3 id="Conhecimento_geral">Conhecimento geral</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Variável_(programação)")}} no Wikipédia</li>
+</ul>
+
+<h3 id="Referências_técnicas">Referências técnicas</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Guide/Grammar_and_types#Declarations">Declarando Variáveis no JavaScript</a></li>
+ <li><a href="https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Statements/var"><strong><code>var</code></strong> <strong>statement</strong> no JavaScript</a></li>
+</ul>