-
-
Save matthewhartman/6a2e2c23e7a379886a5d4e85ee2a83db to your computer and use it in GitHub Desktop.
Format number with commas
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
// Converts `1234567` => `"1,234,567" | |
// Does not support decimals yet | |
function formatNumberWithCommas (number) { | |
return ('' + number) // Convert to a string | |
.split('').reverse().join('') // Reverse the order of the characters (which are all digits at this point) | |
.replace(/(...)/g, '$1,') // Insert a comma after every three digits | |
.split('').reverse().join('') // Un-reverse the characters | |
.replace(/^,/, ''); // Remove any commas that were added to the beginning (i.e. if the number of digits was a multiple of three) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment