I have nested array so I had to use 3 times ng-repeat
<div ng-repeat = "cat in cats" >
<div ng-repeat = "kitty in cat " >
<button ng-click="delete($index)">Delete</button>
</div>
</div>
</div>
So my problem is that I can't get access to 2nd ng-repeat $index , any ideas ?