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

メッセージ

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

関連項目