Created
July 3, 2013 13:20
-
-
Save pherrymason/5917792 to your computer and use it in GitHub Desktop.
Round up number to a given number of decimals.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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