Skip to content

Instantly share code, notes, and snippets.

@enqtran
Last active June 20, 2017 01:26
Show Gist options
  • Save enqtran/5e8b9304449922ac58cc71a198922a69 to your computer and use it in GitHub Desktop.
Save enqtran/5e8b9304449922ac58cc71a198922a69 to your computer and use it in GitHub Desktop.
[JS] Number format // 12,3456,789
//input: 123456789
function number_format(number) {
var value_number = number.toLocaleString({minimumFractionDigits: 0});
return value_number;
}
//output: 123,456,789
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment