OR, AND Operator

前端 未结 8 2080
臣服心动
臣服心动 2021-02-13 15:30

Newbie question. How to calculate the value of the formula A f B, where f - the binary function OR or AND?

8条回答
  •  攒了一身酷
    2021-02-13 16:12

    if(A == "haha" && B == "hihi") {
    //hahahihi?
    }
    
    if(A == "haha" || B != "hihi") {
    //hahahihi!?
    }
    

提交回复
热议问题