Performance Gain Using ng-bind
We recommend the usage of ng-bind
in your views.
It allows some performance improvements compared to the usual {{ }}
syntax, without adding too much code complexity.
Your code would then look like:
<div ng-bind='home.myValue'></div>
Instead of:
<div>
{{home.myValue}}
</div>
Learn More
The topic has been discussed a lot, and you can follow some of these discussions here or there.