Skip to content

Instantly share code, notes, and snippets.

@radist2s
Created May 24, 2015 16:32
Show Gist options
  • Save radist2s/8a6cdaaeda6c4c6996b5 to your computer and use it in GitHub Desktop.
Save radist2s/8a6cdaaeda6c4c6996b5 to your computer and use it in GitHub Desktop.
Format Money
window.formatMoney = function formatMoney(money) {
money = parseInt(money)
money = isFinite(money) ? money : 0
return String(money).replace(/./g, function(c, i, a) {
return i && 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