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.foo;
// TypeError: null has no properties
undefined.bar;
// TypeError: undefined has no properties
null
- {{jsxref("undefined")}}