Skip to content

Instantly share code, notes, and snippets.

@swanwish
Last active August 29, 2015 14:24
Show Gist options
  • Save swanwish/a34adcc2ad8d7d706ae2 to your computer and use it in GitHub Desktop.
Save swanwish/a34adcc2ad8d7d706ae2 to your computer and use it in GitHub Desktop.
Format number in Javascript
var number = 3;
var formattedNumber = number.toFixed(2)
console.log(formattedNumber)
// Output
// 3.00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment