TypeError: "x" has no properties

We’d love to hear your thoughts on the next set of proposals for the JavaScript language. You can find a description of the proposals here.
Please take two minutes to fill out our short survey.

Сообщение

TypeError: Unable to get property {x} of undefined or null reference (Edge)
TypeError: null has no properties (Firefox)
TypeError: undefined has no properties (Firefox)

Тип ошибки

Что пошло не так?

У null и undefined нет свойств, к которым можно было бы обратиться.

Примеры

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

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

Смотрите также