Skip to content

Instantly share code, notes, and snippets.

@be9
Forked from anonymous/gist:12490
Created September 24, 2008 05:47
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 be9/12491 to your computer and use it in GitHub Desktop.
Save be9/12491 to your computer and use it in GitHub Desktop.
function cool_cost(cost) {
cost = Number(cost);
c = Math.floor(cost / 1000);
b = String(cost % 1000);
while (b.length < 3)
b = '0' + b;
return c + ',' + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment