Skip to content

Instantly share code, notes, and snippets.

@roshanca
Last active April 19, 2018 07:49
Show Gist options
  • Save roshanca/97c180d8b5fb5867bb5c8f5bf4808d3c to your computer and use it in GitHub Desktop.
Save roshanca/97c180d8b5fb5867bb5c8f5bf4808d3c to your computer and use it in GitHub Desktop.
货币格式化展示
let num = 123456.1234
num.toLocaleString('zh-Hans-CN', { style: 'currency', currency: 'CNY' })
// ¥123,456.12
num.toLocaleString('en-US', { style: 'currency', currency: 'USD' })
// $123,456.12
num.toLocaleString('zh', { style: 'decimal', minimumFractionDigits: 2, maximumFractionDigits: 2 })
// 123,456.12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment