Skip to content

Instantly share code, notes, and snippets.

@tebriel
Created January 31, 2012 03:19
Show Gist options
  • Save tebriel/1708520 to your computer and use it in GitHub Desktop.
Save tebriel/1708520 to your computer and use it in GitHub Desktop.
currency!
function formatCurrency(amount)
{
var i = parseFloat(amount);
if (isNaN(i)) { i = 0.00; }
var minus = '';
if (i < 0) { minus = '-'; }
i = Math.abs(i);
i = parseInt((i + 0.005) * 100, 10);
i = i / 100;
s = '';
s += 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