dev2016. 4. 11. 21:38

막연하게 이해하고 썼는데, 

아래 예시가 가장 이해하기 편한 듯!!


Take a look here: http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html

The 3 equal signs mean "equality without type coercion". Using the triple equals, the values must be equal in type as well.

0 == false   // true
0 === false  // false, because they are of a different type
1 == "1"     // true, automatic type conversion for value only
1 === "1"    // false, because they are of a different type
null == undefined // true
null === undefined // false
'0' == false // true
'0' === false // false


http://stackoverflow.com/questions/523643/difference-between-and-in-javascript


한마디로 정리하자면,

=== 이 == 에 비해서 타입 검사까지 하기 때문에 훨씬 엄격하다(strict).

'dev' 카테고리의 다른 글

LINE BOT trial account 마감... ㅠ  (0) 2016.04.19
zookeeper 알아보기  (0) 2016.04.15
maven 빌드시 buildnumber 추가하기  (0) 2016.04.04
linux crontab 사용하기  (0) 2016.03.25
apache redirect  (0) 2016.02.12