Skip to content

Instantly share code, notes, and snippets.

@bhaibel
Last active October 30, 2018 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhaibel/140d174379da9faa65f566e9534c9498 to your computer and use it in GitHub Desktop.
Save bhaibel/140d174379da9faa65f566e9534c9498 to your computer and use it in GitHub Desktop.
Metrics, Async/Await, and Really Big Hammers -- snippet 1
async function showPrice(item) {
const priceWithoutShipping = onSale ? salePrice(item) : item.price;
const shippingCost = await shippingRate(item);
const totalPrice = priceWithoutShipping + shippingCost;
await postMetrics('userCheckoutStep3', totalPrice);
showUserTotal(totalPrice);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment