Skip to content

Instantly share code, notes, and snippets.

@stoneboyindc
Last active March 2, 2021 16:33
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 stoneboyindc/fa4eed3c57396821783c304cda86ef7b to your computer and use it in GitHub Desktop.
Save stoneboyindc/fa4eed3c57396821783c304cda86ef7b to your computer and use it in GitHub Desktop.
function getPriceInDollars(product={priceInCents: 0}) {
let {name, priceInCents=0, availableSizes} = product;
return "$" + (priceInCents / 100).toFixed(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment