Why Is Ng-repeat Slow?

Why Is Ng-repeat Slow? Why is ng-repeat in AngularJS slow with large lists? The ng-repeat directive of AngularJS is getting slow above 2500 two-way data bindings. … This is due to AngularJS watching for changes by “dirty checking”. Every watch consumes time, so large lists with complex data structure will slow down your application. Why