Skip to content

Instantly share code, notes, and snippets.

@pherrymason
Created July 3, 2013 13:20
Show Gist options
  • Save pherrymason/5917792 to your computer and use it in GitHub Desktop.
Save pherrymason/5917792 to your computer and use it in GitHub Desktop.
Round up number to a given number of decimals.
var num = 192.168;
num = Math.ceil(num * 10) / 10;
console.log(num); // 192.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment