Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.15 KB

File metadata and controls

41 lines (27 loc) · 1.15 KB
title slug
TypeError: "x" has no properties
Web/JavaScript/Reference/Errors/No_properties

{{jsSidebar("Errors")}}

JavaScript の例外 "null (or undefined) has no properties" は、 null および {{jsxref("undefined")}} のプロパティにアクセスしようとしたときに発生します。これらはプロパティを何も持ちません。

エラーメッセージ

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")}}

何がうまくいかなかったのか?

null と {{jsxref("undefined")}} に、アクセス可能なプロパティはありません。

null と undefined にはプロパティがない

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

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

関連項目

  • null
  • {{jsxref("undefined")}}