Skip to content

Instantly share code, notes, and snippets.

@DamienBell
Created April 14, 2014 15:04
Show Gist options
  • Save DamienBell/10656262 to your computer and use it in GitHub Desktop.
Save DamienBell/10656262 to your computer and use it in GitHub Desktop.
make it rain. Convert a number to dollars
function dollars(num){
num= Number(num);
return Math.round(num*100)/100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment