After uploading an excel file, my program reads it out in reverse order. However, I am facing a challenge with ng:repeat as it does not display the objects in reverse order within the Array of Objects.
https://i.sstatic.net/WWCD1.png
This is how the excel spreadsheet appears
https://i.sstatic.net/lwylF.png This is the current output
<table class="table table-striped table-bordered">
<tbody>
<tr ng:repeat="row in sheet.sheet">
<td ng:repeat="cell in row | orderBy : sortingOrder : reverse" ng:bind="cell"></td>
</tr>
</tbody>
</table>
This is a visual representation of the array of objects from the console