Ok so I have read in several places that using ng-bind is better for performance. But looking at these jsperfs makes me a bit confused :)
https://jsperf.com/angular-bind-vs-brackets
http://jsperf.com/ng-bind-vs-brackets/14
So what is the best way when it comes to performance?
{{::value}}
or
<div ng-bind="value"></div>
ng-bindis use for one-way-binding and{{}}is Two way binding. For one-way-bind - angular is not watching that variable to be change or not. But for two-way-binding - angular watching that variable to be change or not, and if value is change then angular reflect newValue to Html or JS.ng-bindand{{...}}are one way updatable (watched) bindings, i.e. model -> view. Also note that the second jsperf comparesng-bindwithng-model- 2 different things. @Mackelito: I would suggest to test yourself in your specific case. It should be very simple.