--- title: 'TypeError: "x" has no properties' slug: Web/JavaScript/Reference/Errors/No_properties tags: - JavaScript - TypeError - Ошибки translation_of: Web/JavaScript/Reference/Errors/No_properties ---
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")}}.
У {{jsxref("null")}} и {{jsxref("undefined")}} нет свойств, к которым можно было бы обратиться.
null.foo; // TypeError: null has no properties undefined.bar; // TypeError: undefined has no properties