How can I temporarily deactivate data binding in AngularJS? I am working with a list called items
that is being displayed using ng-repeat
. I need to perform some operations on this list without immediately updating the page, as this could cause slowdown. Is there a way to pause data binding, make changes to the list, and then resume the data-binding process?