Answers for "if else in angular js"

13

ng if else

<div *ngIf="condition; else elseBlock">Content to render when condition is true.</div>
<ng-template #elseBlock>Content to render when condition is false.</ng-template>
Posted by: Guest on March-03-2020
0

if angular

<div *ngIf="condition">Content to render when condition is true.</div>
Posted by: Guest on February-09-2021

Browse Popular Code Answers by Language