본문 바로가기
Javascript

javascript 변수 값 비교 하기 (===, !== 차이)

by @hohoya33 2013년 11월 13일

일반적으로 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'

개의 댓글