I am trying to auto filter an ng-repeat list by even index. Is it possible to do this somehow? Here's what I am trying but it isn't working:
<div data-ng-repeat="thing in things | filter:$even" >
<div>{{thing.name}}</div>
</div>
Is there a proper way of achieving this?