ngrepeat
ng-repeat is a directive in AngularJS (1.x) that renders a template block for each item in a collection. It creates a new scope for each item, allowing the item to be bound to a local variable inside the repeated markup.
Basic usage is ng-repeat="item in items", where items is an array. Inside the template, item refers to
Advanced options include track by, which improves performance when the collection changes. For example, ng-repeat="item in
Performance considerations arise because ng-repeat creates a child scope for each item, which can impact digest
Common use cases include rendering lists, tables, or select options, and generally any repeated markup bound