Article
home/blog/Loading

How to use ng-repeat in AngularJS

Here is a quick example of ng-repeat usage and implementation

Controller example:

const myObject: string[] = ['str 1', 'str 2'];
<div ng-repeat="str in ctrl.myObject">
    <div>{{str}}</div>
</div>