Sorry for basic question, I am trying to understand the angular2 flow using basic example.
import { Component } from \'@angular/core\';
@Component({
sel
Binding to functions or methods in the template is discouraged because these functions are called every time change detection is run.
You should at least cache results inside the function to avoid repeatedly recalculating potential expensive calculations.
A better approach is to recalculate the result when properties change the result depends on, and assign the result to a property and bind to this property from the view instead.