Skip to content

Instantly share code, notes, and snippets.

@liuxd
Created October 25, 2019 02:54
Show Gist options
  • Save liuxd/6bc846187f5895a66f14801f0dc60d6d to your computer and use it in GitHub Desktop.
Save liuxd/6bc846187f5895a66f14801f0dc60d6d to your computer and use it in GitHub Desktop.
[convert number to dollar]
function show_dollar(num) {
return '$' + num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment