Skip to content

Instantly share code, notes, and snippets.

@c7x43t
Last active May 9, 2018 09:40
Show Gist options
  • Save c7x43t/ea3f9250457c678e3e42a87f4f7aab04 to your computer and use it in GitHub Desktop.
Save c7x43t/ea3f9250457c678e3e42a87f4f7aab04 to your computer and use it in GitHub Desktop.
roundN(1.005,2) -> 1.01
function roundN(n,m){
return Math.round(n*Math.pow(10,m)+72e-16)/Math.pow(10,m);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment