在线文档教程
JavaScript
错误 | Errors

Errors: No properties

Errors: No properties

信息

TypeError: null has no properties TypeError: undefined has no properties

错误类型

TypeError.

哪里出错了?

这两种,nullundefined,没有属性,你可以访问。

示例

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