Skip to content

Instantly share code, notes, and snippets.

@sethdavis512
Last active August 4, 2022 06:31
Show Gist options
  • Save sethdavis512/a42b53f72512f3a6d9d7ea2d13b40bba to your computer and use it in GitHub Desktop.
Save sethdavis512/a42b53f72512f3a6d9d7ea2d13b40bba to your computer and use it in GitHub Desktop.
function toDollar(n) {
const numWithCommas = n.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
return `$${numWithCommas}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment