I would like to look up the word "script" inside an object, which would be the Roteiro
variable.
I started trying to figure something out after searching the internet, but I got lost, and it did not work, so I need help with the reasoning ... as follows:
var Roteiro = {};
var roteiro = [{ descricaoRoteiro: "Descrição roteiro", idRoteiro: 1 }];
var perguntas = [{ tituloPergunta: "Titulo pergunta", idPergunta: 2 }];
var opcoes = [{ tituloOpcao: "Titulo opcao roteiro", idOpcao: 3 }];
Roteiro = { roteiro: roteiro, perguntas: perguntas, opcoes: opcoes};
for (var key in Roteiro) {
debugger;
if(typeof(Roteiro[key]) == "object"){
for (var key2 in Roteiro[key]){
for (var key3 in Roteiro[key][key2]){
for (var name in Roteiro[key][key2][key3].keys){
alert(Roteiro[key][key2][key3]
};
}
}
}
}
After finding some record I would like to get the "location" where the word was found, is it possible?