Angular has released the new '@IF' block syntax similar to Javascript
How does this work?
@For
Similar to JavaScript’s
for...of
loops, Angular provides the@for
block for rendering repeated elements.
You might've noticed that there's additional track
keyword.
track
property
Why?
Angular needs to track each element through any reordering, usually by treating a property of the item as a unique identifier or key (Items can later change or move).
Top comments (0)