NgIf is a built-in template directive that adds or removes parts of the DOM depending on if the expression passed to it is true or false:
<div *ngIf="userHasPet">
{{ user.pet.name }}
</div>
In the above, if userHasPet is true, then the div will be included in the DOM (it will be on the page), and if userHasPet is false, the div will be removed from the DOM (it won’t be on the page).
Like with *ngFor, the * character allows to create a template and allows for a shortcut to this syntax: template=“ngIf userHasPet”.
You can also pass in a more complex expression to *ngIf:
<div *ngIf="user.name.length > 6 && user.name.length < 10">
Long name {{ user.name }}, but not too long!
</div>
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up