Math.round(217.5);//=218 Math.round(870/100*25);//=217 Math.round(870*25/100);//=218
alert( (870 / 100 * 25).toString() ); alert( (870 * 25 / 100).toString() ); alert( (870 / 100 * 25).toFixed( 1 ) ); alert( (870 * 25 / 100).toFixed( 1 ) );