How can I skip the first index from the array?
<li *ngFor="#user of users">
{{ user.name }} is {{ user.age }} years old.
</li>
You could use the slice pipe.
<li *ngFor="#user of users | slice:1">
{{ user.name }} is {{ user.age }} years old.
</li>
The first parameter corresponds to a positive integer representing the start index.