Skip to content

Instantly share code, notes, and snippets.

@uqmessias
Created October 7, 2022 19:51
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 uqmessias/b95ac15647696dd97fb308c437aa1937 to your computer and use it in GitHub Desktop.
Save uqmessias/b95ac15647696dd97fb308c437aa1937 to your computer and use it in GitHub Desktop.
Format number to currency format
const toCurrency = num => num.toFixed(2).replace('.', ',').replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment