I have the following code to calculate a certain percentage:
var x = 6.5;
var total;
total = x/15*100;
// Result 43.3333333333
What I want to have as a result is the exact number 43
and if the total is 43.5
it should be rounded to 44
Is there way to do this in JavaScript?
Use the Math.round()
function to round the result to the nearest integer.