Answers for "js round to 2 after ."

15

javascript round to 2 decimal places

var subTotal="12.1345";// can also be int, float, string
var subTotalFormatted=parseFloat(subTotal).toFixed(2); //"12.13"
Posted by: Guest on July-22-2019
0

js number round to each 15

Math.ceil(n / 15) * 15
// 3 -> 15, 22 -> 30 etc.
Posted by: Guest on January-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language