Skip to content

Instantly share code, notes, and snippets.

@RobertFischer
Created December 22, 2014 15:35
Show Gist options
  • Save RobertFischer/589724f3d56104259161 to your computer and use it in GitHub Desktop.
Save RobertFischer/589724f3d56104259161 to your computer and use it in GitHub Desktop.
That's some fine golf you got there...
{
toFixed: function(num) {
return num.toFixed(0).replace(/./g, function(c, i, a) {
return i > 0 && c !== "." && (a.length - i) % 3 === 0 ? "," + c : c;
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment