Skip to content

Instantly share code, notes, and snippets.

@mattlundstrom
Last active August 29, 2015 14:01
Show Gist options
  • Save mattlundstrom/3b9fa5cd671c23c82904 to your computer and use it in GitHub Desktop.
Save mattlundstrom/3b9fa5cd671c23c82904 to your computer and use it in GitHub Desktop.
Rounding
function roundToDecimal( number, decimalPlaces ){
var multiplier = Math.pow( 10, decimalPlaces );
return Math.round( number * multiplier ) / multiplier;
}
function roundNearest( number, nearest ){
return Math.round( number / nearest ) * nearest;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment