JavaScript における論理演算子の役割
JavaScript の論理演算子は、ブール値に対してブール演算を実行して新しいブール値を生成するために使用されます。これらは主にプロセスの制御と条件の評価に使用されます。
一般的に使用される論理演算子は次のとおりです:
ブール AND (AND)
&&
&&
<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>
ブール型 OR (OR)
シンボル: ||
シンボル: !
以上がjsにおける論理演算子の役割の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。