Want to use ng-repeat without an html element? Use the below example to use ng-repeat without an html element.
1 2 3 4 5 | <tbody ng-repeat="row in array"> <tr ng-repeat="item in row"> <td>{{item}}</td> </tr> </tbody> |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.