Posts by Murilo Munhão • 21 points
1 post
-
2
votes3
answers208
viewsA: How to format decimals in Javascript?
Use the Math.floor() function if you want to round it down or Math.Ceil() to round it up. If you want to round the number of decimals use . toFixed(X), where X is the number of rounded boxes. num1 =…