Angular - Directives
Given this component code:
And this template:
What happens when the button is clicked twice?
export class AppComponent {
show = false;
}And this template:
<button (click)="show = !show">Toggle</button> <div *ngIf="show">Hello World</div>
What happens when the button is clicked twice?
