TypeError: null/undefined has no properties
訊息
TypeError: Cannot read properties of undefined (reading 'x') (V8-based) TypeError: Cannot destructure 'x' as it is undefined. (V8-based) TypeError: Cannot destructure property 'x' of 'y' as it is undefined. (V8-based) TypeError: null has no properties (Firefox) TypeError: undefined has no properties (Firefox) TypeError: undefined is not an object (evaluating 'undefined.x') (Safari) TypeError: Right side of assignment cannot be destructured (Safari)
錯誤類型
哪裡出錯了?
範例
null 和 undefined 沒有屬性
js
null.foo;
// TypeError: null has no properties
undefined.bar;
// TypeError: undefined has no properties