Last active
June 22, 2021 00:25
-
-
Save patik/c9e8d95dd5c35ae634d418a48b70d042 to your computer and use it in GitHub Desktop.
Format number with commas
This file contains 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.89" => "1,234,567.89" | |
function formatNumberWithCommas(number) { | |
const parts = number.split('.') | |
return ('' + parts[0]) // 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) | |
.concat(parts[1] ? '.' + parts[1] : '') // Re-add the decimal, if any | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh yeah! Nice one mate!! 🤟