Directions: In the product object that is provided, the cost and deliveryFee are in US dollars. Add a method named newPayments to the product object that sums the cost and deliveryFee and returns the result in cents (multiply by 100). Remember to use this and to return the result.
Currently stuck on this code
let product = {
cost: 1200,
deliveryFee: 200,
newPayments: function(){
return this.cost + this.deliveryFee * 100;
}
};
cost and deliveryFee should be added together then multiplied by 100 but it seems unable to add