Is it possible to print array values (with foreach) in reverse order?
Let's say I have this example:
someArray = [0, 1, 2, 3];
self.someArray = ko.observableArray(someArray );
If I print that with foreach, it'll look like:
0
1
2
But, is it possible to print in reverse order, so it can look like:
2
1
0
I know how to do that with for statement, but inside html is possible to use only knockout js foreach statement.