Pregunta

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

¿Fue útil?

Solución

Use Math.round()

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

Fiddle Demo

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top