Skip to content

Instantly share code, notes, and snippets.

@leoli0605
Created May 11, 2024 05:39
Show Gist options
  • Save leoli0605/44dbc658c5ded573054cd409102312c8 to your computer and use it in GitHub Desktop.
Save leoli0605/44dbc658c5ded573054cd409102312c8 to your computer and use it in GitHub Desktop.
const number = 123456.789;
console.log(new Intl.NumberFormat('en-US', {style: 'currency', currency: 'USD'}).format(number),);
// $123,456.79
console.log(new Intl.NumberFormat('en-US', {style: 'currency', currency: 'TWD'}).format(number),);
// NT$123,456.79
console.log(new Intl.NumberFormat('en-US', {style: 'currency', currency: 'CNY'}).format(number),);
// CN¥123,456.79
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment