首页 > 网站 > WEB开发 > 正文

javascipt : reduce

2024-04-27 14:19:31
字体:
来源:转载
供稿:网友

javascipt : reduce

$scope.totalPRice = function () {                        return $scope.addcartProduct.reduce(function (money, product) {                            return money += (product.quantity * product.priceAfter);                        }, 0);                    }

reduceforEach 很类似。不错!不用开变量


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表