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

有帮助吗?

解决方案

Use Math.round()

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

Fiddle Demo

其他提示

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()

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top