Skip to content

Instantly share code, notes, and snippets.

@royce002
Created December 12, 2019 02:31
Show Gist options
  • Save royce002/72365fabec440d86a2db18ff5ffe79f1 to your computer and use it in GitHub Desktop.
Save royce002/72365fabec440d86a2db18ff5ffe79f1 to your computer and use it in GitHub Desktop.
JavaScript function to format currency
function currencyFormat(num) {
return '$' + num.toFixed(2).replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,')
}
console.info(currencyFormat(2665)) // $2,665.00
console.info(currencyFormat(102665)) // $102,665.00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment