赞
踩
在我们进行数据处理时,往往会用到某个数的取整和取余操作,下面对这该方法进行总结
js:parseInt(7/2)//输出为3
js: Math.ceil(7/2) // 输出为4
js: Math.round(7/2) //输出为4
js: Math.floor(7/2) //输出为3
Math.round(x) 四舍五入,如Math.round(0.60),结果为1;
Math.round(0.49),结果为0;
Math.floor(x) 向下舍入,如Math.floor(0.60)与Math.floor(0.49),结果均为0;
Math.ceil(x)向上舍入,如Math.ceil(0.60)与Math.ceil(0. 49),结果均为1。
6%4 //输出为2
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。