Die Rolle logischer Operatoren in JavaScript
Logische Operatoren in JavaScript werden verwendet, um boolesche Operationen an booleschen Werten auszuführen, um einen neuen booleschen Wert zu erzeugen. Sie dienen vor allem der Steuerung von Prozessen und der Beurteilung von Zuständen.
Häufig verwendete logische Operatoren sind:
Boolesches UND (UND)
&&
&&
<code class="js">const isSunny = true; const isWarm = true; if (isSunny && isWarm) { console.log("Go for a walk!"); }</code>
布尔或 (OR)
||
<code class="js">const isHungry = true; const isThirsty = false; if (isHungry || isThirsty) { console.log("Get something to eat or drink!"); }</code>
布尔非 (NOT)
!
<code class="js">const is raining = false; if (!is raining) { console.log("It's not raining!"); }</code>
Boolean OR (OR)
Symbol: ||
Symbol: !
Das obige ist der detaillierte Inhalt vonDie Rolle logischer Operatoren in js. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!