Funkcja okrągła w jQuery
iWords = 300;
Math.round((iWords / 100) * 6000, 2) //2nd argument denoted after 2 decimal places.
kinjal suryavanshi
iWords = 300;
Math.round((iWords / 100) * 6000, 2) //2nd argument denoted after 2 decimal places.
var avg=10.55;
console.log(Math.round(avg)); //Prints 11
Math.round(3.14159 * 100) / 100 // 3.14
3.14159.toFixed(2); // 3.14 returns a string
parseFloat(3.14159.toFixed(2)); // 3.14 returns a number