Last active
April 27, 2020 06:21
-
-
Save Giayychan/9a0cc8c09231a97d29c9d0bc7e046e76 to your computer and use it in GitHub Desktop.
for $
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
export function numberWithCommas(x) { | |
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment