aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/boolean/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/glossary/boolean/index.html')
-rw-r--r--files/de/glossary/boolean/index.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/files/de/glossary/boolean/index.html b/files/de/glossary/boolean/index.html
new file mode 100644
index 0000000000..24ba696154
--- /dev/null
+++ b/files/de/glossary/boolean/index.html
@@ -0,0 +1,50 @@
+---
+title: Boolean
+slug: Glossary/Boolean
+translation_of: Glossary/Boolean
+---
+<p>In der Programmierung ist <strong>Boolean </strong>ein logischer {{Glossary("Type","Datentyp")}}, der nur einen der zwei {{Glossary("Value","Werte")}} <code>true</code> oder <code>false</code>,  <em>wahr </em>oder <em>falsch</em> annehmen kann.</p>
+
+<p>Boolesche Werte sind die Grundlage für die Entscheidung, ob ein Teilbereich des Programms ausgeführt werden soll (<code>true</code>) oder nicht (<code>false</code>), zum Beispiel bei einem <code>if</code>-Block oder einer <code>for</code>-Schleife:</p>
+
+<pre>/* JavaScript if */
+if (Bedingung) {
+ // auszuführender Programmabschnitt, falls die Bedingung true ergibt
+}
+
+let i = 1;
+if (i == 1) { // dies ist wahr, true
+ console.log("Bedingung ist true");
+} else {
+ console.log("Bedingung ist false");
+}
+
+
+
+/* JavaScript for */
+for (Kontrollvariable; Bedingung; Zähler) {
+ // auszuführender Abschnitt, solange die Bedingung true ergibt
+}
+
+for (let i = 0; i &lt; 4; i++) {
+ console.log("Ich werde ausgegeben, so lange die Bedingung i &lt; 4 wahr ist.");
+}
+
+</pre>
+
+
+
+<h2 id="Mehr_erfahren">Mehr erfahren</h2>
+
+<h3 id="Allgemein">Allgemein</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Datentyp#Boolean_.28logische_Werte.29", "Boolean")}} auf Wikipedia</li>
+</ul>
+
+<h3 id="Technik">Technik</h3>
+
+<ul>
+ <li>Das globale {{jsxref("Boolean")}}-{{Glossary("Object","Objekt")}} in JavaScript</li>
+ <li><a href="/de/docs/Web/JavaScript/Data_structures">JavaScript-Datentypen und -strukturen</a></li>
+</ul>