--- title: 'TypeError: "x" has no properties' slug: Web/JavaScript/Reference/Errors/No_properties translation_of: Web/JavaScript/Reference/Errors/No_properties ---
TypeError: null has no properties TypeError: undefined has no properties
{{jsxref("TypeError")}}.
{{jsxref("null")}} 與 {{jsxref("undefined")}} 並沒有可訪問的屬性。
null.foo; // TypeError: null has no properties undefined.bar; // TypeError: undefined has no properties