Skip to content

Instantly share code, notes, and snippets.

@russellf9
Last active September 7, 2021 13:16
Show Gist options
  • Save russellf9/b5199c42e07091928f97e950414d636a to your computer and use it in GitHub Desktop.
Save russellf9/b5199c42e07091928f97e950414d636a to your computer and use it in GitHub Desktop.
JS - Utility to format currency (in this case USD)
// format number as currency
export function formatCurrency(amount) {
return new Intl.NumberFormat(`en-US`, {
style: "currency",
currency: "USD",
minimumFractionDigits: 2,
}).format(amount);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment