Skip to content

Instantly share code, notes, and snippets.

@markanthonyuy
Created February 26, 2015 05:41
Show Gist options
  • Save markanthonyuy/8bceb87ef92afe332365 to your computer and use it in GitHub Desktop.
Save markanthonyuy/8bceb87ef92afe332365 to your computer and use it in GitHub Desktop.
Format Money function
function formatMoney(amount, currency) {
var splitPoint = amount.toLocaleString().split('.'),
newFormat;
if(splitPoint.length > 1) {
newFormat = splitPoint[0] + '.' + (splitPoint[1].length == 1 ? splitPoint[1] + '0' : splitPoint[1]);
} else {
newFormat = splitPoint[0] + '.00';
}
if(currency) return currency + newFormat;
return newFormat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment