--- 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; // 错误类型: null没有这个属性 undefined.bar; // 错误类型: undefined没有这个属性