--- title: 'TypeError: "x" has no properties' slug: Web/JavaScript/Reference/Errors/No_properties tags: - Errors - JavaScript - TypeError 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