Example: http://jsfiddle.net/TheSharpieOne/cLHcU/
Note that in the newer version of angular, you need to register the controller instead of throwing it into the global window object. Here is an example using 1.4: http://jsfiddle.net/TheSharpieOne/cLHcU/42/ (note: the repetition remains the same).
HTML / Template: (All work is done here) There is no need for nested repetition.
<span ng-repeat="arr in myArr"> {{arr[arr.length-1]}} </span>
Controller: (only has an array)
function myCtrl($scope) { $scope.myArr = [[1,2,6],[1,2,7,9],[2],[1,5,3,2,6]]; }
source share