Skip to content

Instantly share code, notes, and snippets.

@alexkilgour
Created September 11, 2014 09:52
Show Gist options
  • Save alexkilgour/b6d22d767cbb4c452890 to your computer and use it in GitHub Desktop.
Save alexkilgour/b6d22d767cbb4c452890 to your computer and use it in GitHub Desktop.
Rounding a number down to a specified number of decimal places
// rounding down to specified decimal places
var round = function(value, decimals) {
return Math.floor(value * Math.pow(10,decimals)) / Math.pow(10,decimals);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment