how to use ng-repeat loop by number of count in angularJS

Viewed 7044

I want to bind html table row by specific count times using angularJS binding like below:

<table>
    <tr ng-repeat="x in 5">
       <td>abc</td>
    </tr>
</table>

If anybody have solution, please reply as possible. Thanks

4 Answers
Related