Skip to content

Instantly share code, notes, and snippets.

@Cycymomo
Forked from codylindley/format price (US)
Last active December 19, 2015 22:39
Show Gist options
  • Save Cycymomo/6028667 to your computer and use it in GitHub Desktop.
Save Cycymomo/6028667 to your computer and use it in GitHub Desktop.
format price (US)
function formatUSprice(amount)
{
var i = parseFloat(amount);
if(isNaN(i)) { i = 0.00; }
var minus = '';
if(i < 0) { minus = '-'; }
i = Math.abs(i);
i = parseInt((i + .005) * 100);
i = i / 100;
s = new String(i);
if(s.indexOf('.') < 0) { s += '.00'; }
if(s.indexOf('.') == (s.length - 2)) { s += '0'; }
s = minus + s;
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment