I'm trying to access the elements of a list stored in the ViewBag as follows:
function equipamentoTemControle() {
for(i = 0; i < @ViewBag.qtdEquipamentos; i++) {
var contratocod = @ViewBag.DadosEquipamentos[i].contratocod;
}
}
However, when trying to access the contractcod attribute of the i exist. How should I access?