- 목차
javascript and & or
javascript에는 and와 or이 있습니다.
and는 A와 B의 조건이 모두 true일때 true로 작동합니다.
or은 A와 B의 조건이 둘 중에 하나라도 true일때 true로 작동합니다.
javascript and & or
javascript에는 and와 or이 있습니다.
and
A(true) && B(true)
=> true
A(true) && B(false)
=> false
A(false) && B(true)
=> false
A(false) && B(false)
=> false
or
A(true) || B(true)
=> true
A(true) || B(false)
=> true
A(false) || B(true)
=> true
A(false) || B(false)
=> false
댓글
댓글 쓰기