舍入规则:Math.ceil():执行向上舍入,即它总是将数值向上舍入为最接近的整数;Math.floor():执行向下舍入,即它总是将数值向下舍入为最接近的整数;Math.round():执行标准舍入,即它总是将数值四舍五入为最接近的整数。1.定义一个数组:let number=[10.0,10.2,10.3,10.5,10.7];示例:Math.ceil()Math.floor()round()