Skip to content

Instantly share code, notes, and snippets.

@Eronmmer
Created March 23, 2021 22:58
Show Gist options
  • Save Eronmmer/77f7827c697b7baa8329640480f3291b to your computer and use it in GitHub Desktop.
Save Eronmmer/77f7827c697b7baa8329640480f3291b to your computer and use it in GitHub Desktop.
Snippets
  • Format a valid string or number to any currency.
const formatAsMoney = (amount, locale = "en-NG", currency = "NGN") => {
  return new Intl.NumberFormat(locale, {
    style: "currency",
    currency,
  }).format(amount);
};
  • Working with URL query strings made easy -> docs
  • more coming...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment