<script>
var c28 = 15;
var c10 = 3;
var c12 = Math.round((((c28-c10)/9)+parseFloat(c10)),1);
alert(c12);
</script>
Before the round, output was 4.3333333. I want output as 4.3 after round. but it is showing 4 only. Decimal part is not showing. Please help.