<div>
Hello {{yourName}}. You are {{yourAge}}!
</div>
<div>
Your Name: <input ng-model="yourName">
Your Age: <input ng-model="yourAge">
</div>
AngularJS Performance
$digest and $$watchers
Too long...
It'll surprise you...
Enter One Time Binding
Example Usages
$scope.$watch('::doACalculation()', watchListener);
<div ng-repeat="person in ::people"> <!-- people is boundonce... -->
{{::person.name}}
{{person.age}} <!-- not bound once... -->
</div>