aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/glossary/boolean/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/glossary/boolean/index.html')
-rw-r--r--files/pt-pt/glossary/boolean/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/files/pt-pt/glossary/boolean/index.html b/files/pt-pt/glossary/boolean/index.html
new file mode 100644
index 0000000000..dc4c3bfc21
--- /dev/null
+++ b/files/pt-pt/glossary/boolean/index.html
@@ -0,0 +1,51 @@
+---
+title: Booliano
+slug: Glossário/booliano
+tags:
+ - Booleano
+ - Booliano
+ - Glossário
+ - JavaScript
+ - Linguagens de Programação
+ - Progração Scripting
+ - tipos de dados
+translation_of: Glossary/Boolean
+---
+<p>Na informática, um <strong>booliano </strong>é um tipo de dados lógico que pode ter apenas os valores <span class="seoSummary"><code>verdadeiro</code> ou <code>falso</code>.</span> Por exemplo, em JavaScript, as condicionais de boolianos são frequentemente utilizadas ​​para decidir quais as secções de código a serem executadas (tal como em <a href="/pt-PT/docs/Web/JavaScript/Reference/Extratos_e_declarações/if...else">declarações <em>if</em></a>) ou repetir (tal como <a href="/pt-PT/docs/Web/JavaScript/Reference/Extratos_e_declarações/for">repetições <em>for</em></a>).</p>
+
+<pre class="brush: js">/* JavaScript if statement */
+if (boolean conditional) {
+ // code to execute if the conditional is true
+}
+
+if (boolean conditional) {
+ console.log("boolean conditional resolved to true");
+} else {
+ console.log("boolean conditional resolved to false");
+}
+
+
+/* JavaScript for loop */
+for (control variable; boolean conditional; counter) {
+ // code to execute repeatedly if the conditional is true
+}
+
+for (var i=0; i &lt; 4; i++) {
+ console.log("I print only when the boolean conditional is true");
+}
+</pre>
+
+<h2 id="Saiba_mais">Saiba mais</h2>
+
+<h3 id="Conhecimento_geral">Conhecimento geral</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Booleano", "Booleano")}} on Wikipedia</li>
+</ul>
+
+<h3 id="Referência_técnica">Referência técnica</h3>
+
+<ul>
+ <li>O objeto global de JavaScript: {{jsxref("Boolean")}}</li>
+ <li><a href="/pt-PT/docs/Web/JavaScript/Estruturas_de_dados">Tipos de dados de JavaScript e estruturas de dados</a></li>
+</ul>