143
Angular 8 ngIf Directive
The ngIf Directives is used to add or remove HTML Elements according to the expression. The expression must return a Boolean value. If the expression is false then the element is removed, otherwise element is inserted. It is similar to the ng-if directive of AngularJS.
ngIf Syntax
The *ngIf directive form with an “else” block
The ngIf directive does not hide the DOM element. It removes the entire element along with its subtree from the DOM. It also removes the corresponding state freeing up the resources attached to the element.
The *ngIf directive is most commonly used to conditionally show an inline template. See the following example:
Same template example with else block
Next TopicAngular 8 ngFor Directive