gpt4 book ai didi

javascript - 将计算结果放入另一个数组中

转载 作者:行者123 更新时间:2023-12-03 01:36:00 25 4
gpt4 key购买 nike

我有一个对象数组,它有 5 个元素。在 for 循环的帮助下,我想选择这个小于 50 的元素并将它们乘以 0.2。最后,我想将这些结果推送到我的空tipArray,但它不起作用。

var bill = {
tipArray: [],
billValue: [124, 48, 268, 180, 42],
tipValue: function() {
for (var i = 0; i < this.billValue.length; i++) {
if (this.billValue[i] < 50) {
var enumerate = this.billValue[i] * .2;
this.tipArray.push(enumerate);
}
}
}
}

console.log(bill.tipArray);

最佳答案

你能正确格式化你的代码吗?很难读。您必须至少运行函数 tipValue 一次。

var bill = {...};

bill.tipValue();

console.log(bill.tipArray); // [9.600000000000001, 8.4]

关于javascript - 将计算结果放入另一个数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51069896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com