Angular - Templates and Data Binding
Given the component code:
Value: {{ count }}
count = 3;What will be the displayed value after clicking the button once?
increment() { this.count++; }
Value: {{ count }}
