如何让 let 乘积的最终结果乘以 100

How do I get the end result of my let product to multiply 100

说明:在提供的产品对象中,成本和运费以美元为单位。将名为 newPayments 的方法添加到产品对象,该方法将成本和交付费用相加,return 以美分计算结果(乘以 100)。请记住使用它并 return 结果。

目前卡在这个代码上

let product = {
  cost: 1200,
  deliveryFee: 200,
  newPayments: function(){
    return this.cost + this.deliveryFee * 100;
  }
};

cost 和 deliveryFee 应该相加再乘以 100 但好像不能相加

与数学有运算顺序的方式相同,JavaScript 也是如此。将添加的内容括在括号中以解决此问题。

let product = {
  cost: 1200,
  deliveryFee: 200,
  newPayments: function(){
    return (this.cost + this.deliveryFee) * 100;
  }
};