This it my objects with arrays:
01-543BY: Array[1]
03-45BD23: Array[1]
03-67BS50: Array[1]
06-78FR90: Array[1]
07-467BY3: Array[1]
09-23DF76: Array[1]
Currently I have six, but I only want to show 4. This is my ng-repeat:
<div ng-repeat="(key, item) in product.productListByCategoriesShow ">
I tried <div ng-repeat="(key, item) in product.productListByCategoriesShow |limitTo: 4 ">
But it seems not working. Any suggestions? Thx