function add_item_to_cart(name, price, quantity) {
cart = add_item(cart, name, price, quantity);
calc_cart_total();
}
function calc_cart_total() {
total = 0;
cost_ajax(cart, function(cost) {
total += cost;
shipping_ajax(cart, function(shipping) {
total += shipping;
update_total_dom(total);
});
});
}
유스 케이스 use case 다이어그램 그리기
두 번 연속 클릭 시 발생하는 일을 알고 싶다. 타임라인 다이어그램을 그려보자.