Suppose I have the following object:
var pessoa = {
nome: "João",
animais: {
cachorro: "Rex",
gato: "Pipoca",
}
}
I need a function to do something like this:
var gatoDoJoao = pessoa["animais.gato"];
I know that in this example the correct is pessoa.animais.gato
, but I want the value to be accessed through a string.
Something like: var gatoDoJoao = acessar(pessoa, "animais.gato");