==
JavaScript のとの違いは何ですか?および演算子===
も見たことがあります。このような演算子は他にもありますか?!=
!==
ベストアンサー1
こちらをご覧ください:http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html
3 つの等号は「型強制なしの等価性」を意味します。3 つの等号を使用する場合、値の型も等しくなければなりません。
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