Question

I want to round both 130.68(greater than or equals 130.5) and 131.32(less than 131.5) values to 131.

Was it helpful?

Solution

Use Math.round()

Math.round(130.68); // return 131
Math.round(131.32); // return 131

Fiddle Demo

OTHER TIPS

You need to use Math.round(), In example below both statement will alert 131

alert(Math.round(130.68));
alert(Math.round(131.32));

DEMO

You can use Math.round

num=130.68; 
Math.round(num);

use this link:

Use Math.round()

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top