arrayPerguntas = [{
bloco: $("#bloco-num").val(),
perguntas: [{
numerodapergunta: numeroDaPergunta[0].value,
numerodaperguntaSemPonto: retiraPonto(numeroDaPergunta[0].value),
descricaoQuestao: descricaoQuestao[0].value,
notapergunta: questao[0].value,
tipoQuestao: tipoPerg[0].options[tipoPerg[0].selectedIndex].value
}]
}];
I wanted to add inside the array perguntas
and not in the QuestionsArray, ie my code is adding like this:
{
bloco: "bc-1"
perguntas: [{
numerodapergunta: 1,
numerodaperguntaSemPonto: 1,
descricaoQuestao: "blabla",
notapergunta: 1,
tipoQuestao: "tipo-4"
}]
},{
bloco: "bc-1"
perguntas: [{
numerodapergunta: 2,
numerodaperguntaSemPonto: 2,
descricaoQuestao: "blablabla2",
notapergunta: 2,
tipoQuestao: "tipo-2"
}]
}
I wanted to add like this:
{
bloco: "bc-1"
perguntas: [{
numerodapergunta: 1,
numerodaperguntaSemPonto: 1,
descricaoQuestao: "blabla",
notapergunta: 1,
tipoQuestao: "tipo-4"
},{
numerodapergunta: 2,
numerodaperguntaSemPonto: 2,
descricaoQuestao: "blablabla2",
notapergunta: 2,
tipoQuestao: "tipo-2"
}]
}