Aug 27, 2017 · 1 min read
With the section regarding Computed Properties, you don’t seem to mention the alternatives from an Angular perspective. You could use in-line interpolation to create that output, e.g. {{`this plus ${that} plus ${that}`}} or just call the computed property directly in the template via something like {{computedProperty()}} or <input [value]=”computedProperty()”/>.
Of course, it may be that you were thinking of direct comparisons in terms of performance overheads and underlying check behaviours, however I feel its worth touching upon, as smaller apps may not need to worry about such overheads and avoid more-complex, potentially overblown, implementations.