Orderby filter in AngularJS orders the array based on specified criteria. Following example states how you can order product by price.
<ul> <li ng-repeat = "company in product.products | orderBy:'price"> {{ company.product + ', price:' + product.price }} </li> </ul>