I have this view of the data in a JSON in JQuery
and I want to do something similar to what is done with laravel data to get the data and contrast it with others, I've done something like this ...
console.log(resenia[0]{cmt_libro_id});
for (j = 0; j <length($resenia); j++) {
if (resenia[j]{cmt_libro_id}==id)
{
cmt_no[j] = resenia[j]{cmt_no};
cmt_titulo[j] =resenia[j]{cmt_no};
}
}