--- 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 ---
{{jsSidebar("Errors")}}

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 と undefined にはプロパティがない

null.foo;
// TypeError: null has no properties

undefined.bar;
// TypeError: undefined has no properties

関連項目