What is ngIfElse and how is it used in templates?
- *ngIf supports an else clause to show alternative template when condition is false.
- Use <ng-template> for the else block.
Example:
<div *ngIf="isLoggedIn; else loginPrompt">
Welcome back!
</div>
<ng-template #loginPrompt>
Please log in.
</ng-template>