區別如下:
(推薦學習:js教學)
==表示等同,===表示恆等等;
==只比較內容,而===既比較內容也比較資料型別。
測試程式碼:
「==」
100 == "100" // true 1 == true // true null == null // true undefined == undefined // true null == undefined // true true == "20" // false "1" == "01" // false,此处等号两边值得类型相同,不要再转换类型了!! NaN == NaN // false,NaN和所有值包括自己都不相等。
「===」
100 === "100" // false 1 === true // false NaN === NaN // false null === undefined // false 'abc' === "abc" // true false === false // true null === null // true undefined === undefined // true
以上是js中「==」和「===」有什麼差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!