일반적으로 javascript에서 == 을 하게 되면 값을 비교한다. 데이터 타입이 String, Int, Long 관계없이... 값만 같으면 true를 리턴했지만...
=== 3개짜리는 데이터 타입과 값이 같은 경우에 true를 리턴한다.
!== 는 당연히 반대겠죠~
=== This is the strict equal operator and only returns a Boolean true if both the operands are equal and of the same type. These next examples return true
a === 2
b === 4
!== This is the strict not equal operator and only returns a value of true if both the operands are not equal and/or not of the same type. The following examples return a Boolean true
a !== b
a !== "2"
4 !== '4'
'Javascript' 카테고리의 다른 글
javascript map(), filter(), find(), reduce() (0) | 2013.11.21 |
---|---|
터치 이미지 슬라이드 관련 참고 자료 (0) | 2013.11.20 |
조건 연산자 ?, : (0) | 2013.11.13 |
에니메이션 클릭(오버)한 횟수 만큼 작동될때 (0) | 2013.08.28 |
jQuery 순수 자바스크립트 DOM elements 접근 방법 (0) | 2013.06.19 |
개의 댓글