Last active
April 19, 2018 07:49
-
-
Save roshanca/97c180d8b5fb5867bb5c8f5bf4808d3c to your computer and use it in GitHub Desktop.
货币格式化展示
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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