Skip to content

Instantly share code, notes, and snippets.

@kironroy
Created July 8, 2023 02:50
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 kironroy/4aea43343e49fb7edec938e0f35f4e38 to your computer and use it in GitHub Desktop.
Save kironroy/4aea43343e49fb7edec938e0f35f4e38 to your computer and use it in GitHub Desktop.
function for formatting currency, time
const formatCur = function (value, locale, currency) {
return new Intl.NumberFormat(locale, {
style: 'currency',
currency: currency,
}).format(value);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment