TypeError: can't access property "x" of "y"
Mensagem
TypeError: Unable to get property {x} of undefined or null reference (Edge) TypeError: can't access property {x} of {y} (Firefox) TypeError: {y} is undefined, can't access property {x} of it (Firefox) TypeError: {y} is null, can't access property {x} of it (Firefox) Exemplos: TypeError: x is undefined, can't access property "prop" of it TypeError: x is null, can't access property "prop" of it TypeError: can't access property "prop" of undefined TypeError: can't access property "prop" of null
Tipo de Erro
O que deu errado?
Exemplos
Casos inválidos
js
// casos undefined e null, onde o metódo substring não irá funcionar
var foo = undefined;
foo.substring(1); // TypeError: x is undefined, can't access property "substring" of it
var foo = null;
foo.substring(1); // TypeError: x is null, can't access property "substring" of it
Corrigindo o problema
Para corrigir o problema de valores undefined
ou null
, você pode usar o operador typeof, como no exemplo abaixo.
js
if (typeof foo !== 'undefined') {
// Agora que sabemos que foo está definida, podemos prosseguir
}