Skip to content

Instantly share code, notes, and snippets.

@radzserg
Last active December 16, 2020 16:12
Show Gist options
  • Save radzserg/ee3bfc4223e9915cf1787f913077dfe2 to your computer and use it in GitHub Desktop.
Save radzserg/ee3bfc4223e9915cf1787f913077dfe2 to your computer and use it in GitHub Desktop.
let totalPrice = orderData.items.reduce( (totalPrice, orderItem) => totalPrice + (orderItem.price * orderItem.quantity));
totalPrice = totalPrice + totalPrice * 0.05; // add service commission
// vs
const total = (new OrderCalculator).calculateTotal(orderData);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment