Angular - Components
Given this component template snippet:
And the component code:
What will be displayed after clicking the button three times?
<button (click)="increment()">Add</button>
<p>Count: {{ count }}</p>And the component code:
count = 0;
increment() { this.count++; }What will be displayed after clicking the button three times?
