Currently, I am looping through a list of nested JSON objects in this manner:
<div ng-repeat='item in items'>
<ul>
<li ng-repeat='specific in item'>{{specific}}</li>
</ul>
</div>
I want to display the number of 'specific' items in each object at the top of the page (outside of the ng-repeat scope). Using items.length is not an option since I need to count specific items individually. Unfortunately, I'm unsure how to extract and bind the data from the ng-repeat loop for use outside of its scope.