javascript multiple OR conditions in IF statement

前端 未结 6 832
刺人心
刺人心 2020-12-08 11:17

I think I\'m missing something basic here. Why is the third IF condition true? Shouldn\'t the condition evaluate to false? I want to do something where the id is not 1, 2 or

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-08 11:44

    This is an example:

    false && true || true   // returns true
    false && (true || true) // returns false
    (true || true || true)  // returns true
    false || true           // returns true
    true || false           // returns true
    

提交回复
热议问题