Полагаю, если вы захотите сделать что-то повторно используемое, оно будет выглядеть так:
var items = []; // array that contains all your items
function Item(quantity, rate) { // Item constructor
this.quantity = quantity;
this.rate = rate;
this.total = quantity * rate;
}
items.push(new Item(2, 4), new Item(3, 9)); // creates 2 items and add them to the array
// Processing through every items to get the total
var total = 0;
for (var i = 0; i < items.length - 1; i++) {
total += items[i].total;
}
total += total * 0.07; // calculates taxes