Skip to content

Instantly share code, notes, and snippets.

@jesusgoku
Created February 5, 2015 18:15
Show Gist options
  • Save jesusgoku/d7dff074b360f5c5b0ba to your computer and use it in GitHub Desktop.
Save jesusgoku/d7dff074b360f5c5b0ba to your computer and use it in GitHub Desktop.
(function () {
function addThousandSeparators(num, thousandSeparator) {
if (null == thousandSeparator) {
thousandSeparator = '.';
}
return num.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