Skip to content

Instantly share code, notes, and snippets.

@bpownow
bpownow / gist:befa93f47a1f2384c81c
Created May 2, 2015 05:30
Playing with shopping cart exercise
var cart = {
items: [],
promoCode: null
};
var add_item_to_cart = function(item, quantity) {
for (var i=0; i<quantity; i++) {
cart.items.push(item);
}
};