gpt4 book ai didi

javascript - JS : OR operation with more than two operands?

转载 作者:行者123 更新时间:2023-11-30 18:01:28 26 4
gpt4 key购买 nike

这道题是基于 Javascript 的,但适用于一般的逻辑运算

拿代码举例

if (baseText[i] == "."){
/*splice array*/;}

if (baseText[i] == "!"){
/*splice array*/}

if (baseText[i] == "?"){
/*splice array*/}

输出我想要的,但是下面的

  if (baseText[i] == "." || "!" || "?"){
/*splice array*/}

应该做同样的事情,但没有。原谅我,但我对 OR 运算的理​​解是,只要其中一个语句为真,无论我使用多少个操作数,整个 bool 值都是 True。我是在理论上弄错了,还是在实践中弄错了?

如果这意味着什么,我也会迭代这个“array.length”次

最佳答案

if (baseText[i] == "." ||baseText[i] == "!" ||baseText[i] == "?"){

关于javascript - JS : OR operation with more than two operands?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16869210/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com