What is the difference between \"ng-bind\" and \"one time binding\" in angular js.
If there is any difference, where should I be using each of them?
In simple way,i understood like this,
Two way Data-binding - ng-model
Links both the {{}}(in the HTML) and $scope (in the controller) of the variable and updates the value of the variable if any of the changes happen.
One way Data-binding - ng-bind
Links only from $scope to the {{}}, but not vice versa.