Angular - Performance Optimization
Identify the performance issue in this Angular component:
@Component({
selector: 'app-timer',
template: `{{ currentTime() }}`
})
export class TimerComponent {
currentTime() {
return new Date().toLocaleTimeString();
}
}