Skip to content

Instantly share code, notes, and snippets.

@uinz
Created March 25, 2018 04:10
Show Gist options
  • Select an option

  • Save uinz/e6b224687f9f8fc4e34e4c5b92c0a236 to your computer and use it in GitHub Desktop.

Select an option

Save uinz/e6b224687f9f8fc4e34e4c5b92c0a236 to your computer and use it in GitHub Desktop.
function formate(num) {
return num.toFixed(8).replace(/(.+\.\d\d+?)(0+?)$/, '$1')
}
formate(0.10000) // 0.10
formate(0.111111000) // 0.111111
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment