Solution of infinite digest loop for ng-repeat with object property filter in AngularJS
Few months ago I wrote a code in AngularJS which was something like this: <ul ng-repeat="course in courses|filter:{is_taken:true }" > <li>{{ course.name }}</li> </ul> …