Skip to content

Instantly share code, notes, and snippets.

@anunay
Last active January 3, 2016 13:39
Show Gist options
  • Save anunay/8470621 to your computer and use it in GitHub Desktop.
Save anunay/8470621 to your computer and use it in GitHub Desktop.
Javascript: Currency Format with (,) Seperator
/* Javascript Helper functions */
var MDHelperFx={
toCurrency:function(amount){
_amount = amount.toString();
return _amount.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,") ;
}
}
// Usage:
// MDHelperFx.toCurrency(amount);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment