Skip to content

Instantly share code, notes, and snippets.

@indatawetrust
Created September 30, 2016 11:58
Show Gist options
  • Save indatawetrust/08cd979d14f9100332ea7970b4fab179 to your computer and use it in GitHub Desktop.
Save indatawetrust/08cd979d14f9100332ea7970b4fab179 to your computer and use it in GitHub Desktop.
money format
var money = function money(num) {
var _ = num.split('').reverse(),
n = [];
for (var i = 0; i < Math.ceil(_.length / 3); i++) {
n = n.concat(_.slice(i * 3, i * 3 + 3), ",");
}
n.pop();
return n.reverse().join('');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment