Skip to content

Instantly share code, notes, and snippets.

@dazecoop
Created October 3, 2023 16:17
Show Gist options
  • Save dazecoop/62571b574efa44aca817484cb1c8c99d to your computer and use it in GitHub Desktop.
Save dazecoop/62571b574efa44aca817484cb1c8c99d to your computer and use it in GitHub Desktop.
Vanilla JS number format, useful for currency formatting. Similar to PHP's number_format()
// Format number to X decimal places.
function numberFormat(number, minimumFractionDigits = 0) {
return new Intl.NumberFormat('en', { minimumFractionDigits }).format(number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment