Math 对象
Math 对象用于执行数学任务。
结合保留两位小时的应用:
1,四舍五入
var num =2.446242342; num = num.toFixed(2); // 输出结果为 2.45
2,非四舍五入:
第一种,先把小数边整数:
Math.floor(15.7784514000 * 100) / 100 // 输出结果为 15.77
第二种,当作字符串,使用正则匹配:
Number(15.7784514000.toString().match(/^d+(?:.d{0,2})?/)) // 输出结果为 15.77,不能用于整数如 10 必须写为10.0000
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。