Angular - Directives
You want to display a list of users with their position starting from 1. Which template code correctly achieves this?
<div *ngFor="let user of users; let i = index">{{i + 1}} - {{user.name}}</div>