首先我們知道undefined與null都屬於 JavaScript 的 7 種基本型別。
(推薦教學:js教學)
let primitiveTypes = ['string','number','null','undefined','boolean','symbol', 'bigint'];
它們是屬於虛值,可以使用Boolean(value)或!!value將其轉換為布林值時,值為false。
console.log(!!null); // false console.log(!!undefined); // false console.log(Boolean(null)); // false console.log(Boolean(undefined)); // false
區別:
undefined是未指定特定值的變數的預設值,或沒有明確傳回值的函數,如:console.log(1),也包含物件中不存在的屬性,這些JS 引擎都會為其分配 undefined 值。
null是「不代表任何值的值」。 null是已明確定義給變數的值。在此範例中,當fs.readFile方法未引發錯誤時,我們將獲得null值。
在比較null和undefined時,我們使用==時得到true,使用===時得到false。
console.log(null == undefined); // true console.log(null === undefined); // false
以上是undefined與null有什麼差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!