Skip to content

Instantly share code, notes, and snippets.

@benadamstyles
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benadamstyles/3ac9ac9c7d63e9d49ce5 to your computer and use it in GitHub Desktop.
Save benadamstyles/3ac9ac9c7d63e9d49ce5 to your computer and use it in GitHub Desktop.
Returns a Number or String, with two decimal places ONLY if necessary, for displaying cash figures
var roundToCashString = function roundToCashString(v) {
var integer=Math.floor(v);
return v-integer>0.004 ?
v.toFixed(2) :
integer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment