Skip to content

Instantly share code, notes, and snippets.

@BartlomiejSkwira
Created April 5, 2013 07:48
Show Gist options
  • Save BartlomiejSkwira/5317385 to your computer and use it in GitHub Desktop.
Save BartlomiejSkwira/5317385 to your computer and use it in GitHub Desktop.
Format decimal points in Javascript floats
var profits=2489.8237
profits.toFixed(3) //returns 2489.824 (round up)
profits.toFixed(2) //returns 2489.82
profits.toFixed(7) //returns 2489.8237000 (padding)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment