Last active
August 29, 2015 14:18
-
-
Save karlcow/cdc2a27986757e5d375a 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
| var number = 10000.20; | |
| console.log('default (' + window.navigator.language + '): ' + number.toLocaleString()); | |
| console.log('fr-FR: ' + number.toLocaleString('fr-FR')); | |
| console.log('fr: ' + number.toLocaleString('fr')); | |
| console.log('en-US: ' + number.toLocaleString('en-US')); | |
| console.log('en: ' + number.toLocaleString('en')); | |
| console.log('ja: ' + number.toLocaleString('ja')); | |
| console.log('zh: ' + number.toLocaleString('zh')); | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gecko Firefox/39.0
Blink OPR/29.0.1795.30
Webkit Safari/600.4.10
Trident Internet Explorer 11 or Spartan Edge