So I want to go through an list of objects but I cant index it but can use forEach to go through the elements... My problem is I need to go from the last Object to the first but dont know how to do that with the forEach function! If i'd do a for loop it would look something like this:
var test = [1,2,3,4,5]
for (let i = test.length; i > -1; i=i-1) {
console.log(test[i])
}
But as I explained I somehow cant index it. So can you help me?