I've read that using methods in angular templates can result in performance issues even if they're simple methods (Can Calling Simple Methods in Angular Component Templates Cause Performance Issues?). Does that apply to ECMAScript defined standard built-in objects and functions (JSON, Math, Array methods, parseInt, decodeURI, etc.)?
For example, is it a problem if trees
is an array and I used join()
like this:
<div>{{ trees.join(', ') }}</div>
Do I still need to use pipes (or some other strategy)?