aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/boolean/index.html
blob: 24ba6961543579f1896e7682bd82a30bb35335c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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>