--- title: 'TypeError: "x" has no properties' slug: Web/JavaScript/Reference/Errors/No_properties tags: - Error - Errors - JavaScript - TypeError translation_of: Web/JavaScript/Reference/Errors/No_properties ---
JavaScript の例外 "null (or undefined) has no properties" は、 {{jsxref("null")}} および {{jsxref("undefined")}} のプロパティにアクセスしようとしたときに発生します。これらには何もありません。They
TypeError: Unable to get property {x} of undefined or null reference (Edge) TypeError: null has no properties (Firefox) TypeError: undefined has no properties (Firefox)
{{jsxref("TypeError")}}
{{jsxref("null")}} と {{jsxref("undefined")}} に、アクセス可能なプロパティはありません。
null.foo; // TypeError: null has no properties undefined.bar; // TypeError: undefined has no properties