I have an array with N elements:
$scope.arr = ["1","2","3" ... ,"N"]
I need to make from it a table with X columns and N/X rows.
Can I use ng-repeat to achieve it?
I know that I can manipulate the array to this format :
$scope.arr = [["1","2","3"], ["4","5","6"] ...] and then I can use nested ng-repeat.
But I want to know if it possible to do it one one-level array.