Skip to content

Instantly share code, notes, and snippets.

@hagi4u
Created January 13, 2020 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hagi4u/0535dcb7041a5b19da053f61611f34f2 to your computer and use it in GitHub Desktop.
Save hagi4u/0535dcb7041a5b19da053f61611f34f2 to your computer and use it in GitHub Desktop.
/*
* 쉼표 단위의 숫자로 아웃픗을 내야 하는 헬퍼
*/
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