Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created May 28, 2014 15:22
Show Gist options
  • Save netsuite/09efec64177ba96e745c to your computer and use it in GitHub Desktop.
Save netsuite/09efec64177ba96e745c to your computer and use it in GitHub Desktop.
js: decimal, integer set precision
function setPrecision(number, precision)
{
var prec = Math.pow(10, precision);
return Math.round(number * prec) / prec;
}
// Use: setPrecision(40.1 , 2).toFixed(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment