javascipt : reduce

$scope.totalPrice = function () {

                        return $scope.addcartProduct.reduce(function (money, product) {

                            return money += (product.quantity * product.priceAfter);

                        }, 0);

                    }

这 reduce forEach 很类似。不错!不用开变量

你可能感兴趣的:(reduce)