티스토리 뷰

자바스크립트에서 변수는
"", 숫자 0, NaN, Null, Undefined 일 경우에는 false 나머지는 모두 true를 표현합니다.

변수 a에 "20050919 Firefox/1.0.7"이 저장된다고 가정했을 때 a는 true가 되겠지요.

아래 샘플을 참조하세요
a1 = true && true // t && t returns true
a2 = true && false // t && f returns false
a3 = false && true // f && t returns false
a4 = false && (3 == 4) // f && f returns false
a5 = "Cat" && "Dog" // t && t returns Dog
a6 = false && "Cat" // f && t returns false
a7 = "Cat" && false // t && f returns false

반응형
댓글
공지사항