Edge show fraction digits even if i don't want it
See original GitHub issuenew Intl.NumberFormat('fr-CA', { style: 'currency', currency: 'CAD', useGrouping: true, minimumIntegerDigits: 1, minimumFractionDigits: 0, maximumFractionDigits: 0})
Result in IE (11):
Result in Edge (18):
Result in Chrome (70):
Result in Firefox (nightly 65):
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
Edge show fraction digits even if i don't want it #5845 - GitHub
This bug is similar to #5842. This is not a Chakra bug but rather an ICU bug. It will be fixed in an...
Read more >Display numbers as fractions - Microsoft Support
Use the Fraction format to display or type numbers as actual fractions, rather than decimals. Select the cells that you want to format....
Read more >Decimals versus fractions - Siemens Communities
Can Solid Edge even display in fractions? ... If I want to display 5 digits vs. however many digits are the precision in...
Read more >How to Stop Excel from Rounding Numbers (Decimals ...
How to Stop Excel from Rounding Numbers (Decimals/Fractions) ... If you don't want these, click on to Decrease decimal icon in the ribbon...
Read more >Intl.NumberFormat() constructor - JavaScript - MDN Web Docs
"always" : display grouping separators even if the locale prefers ... will be resolved if both "FractionDigits" ( minimumFractionDigits ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks! So the snippet should probably look something like this:
new Intl.NumberFormat('fr-CA', { style: 'currency', currency: 'CAD', useGrouping: true, minimumIntegerDigits: 1, minimumFractionDigits: 0, maximumFractionDigits: 0}).format(25000);
This bug is similar to #5842. This is not a Chakra bug but rather an ICU bug. It will be fixed in an upcoming version of Windows. Thanks for the report!