Skip to content

Instantly share code, notes, and snippets.

@SanjayBoricha
Created December 13, 2019 06:24
Show Gist options
  • Save SanjayBoricha/0209be9fc6d122651b60c51004d12043 to your computer and use it in GitHub Desktop.
Save SanjayBoricha/0209be9fc6d122651b60c51004d12043 to your computer and use it in GitHub Desktop.
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2
});
console.log(formatter.format(1000)); // "$1,000.00"
formatter.format(10); // "$10.00"
formatter.format(123233000); // "$123,233,000.00"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment