Skip to content

Instantly share code, notes, and snippets.

@maximgatilin
Last active November 23, 2016 09:16
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 maximgatilin/433eee0bb8507787382aca12c4f0d188 to your computer and use it in GitHub Desktop.
Save maximgatilin/433eee0bb8507787382aca12c4f0d188 to your computer and use it in GitHub Desktop.
function roundPlus(x, n) { //x - число, n - количество знаков
if(isNaN(x) || isNaN(n)) return false;
var m = Math.pow(10,n);
return (Math.ceil(x*m)/m).toFixed(n); // в большую сторону
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment