Math.round(x) 将数字舍入为最接近的整数。 Math.floor(x) 将数字向下舍入到最接近的整数。 Math.ceil(x) 将数字向上舍入到最接近的整数。 Math.abs(x) 获取数字的绝对(正)值。 Math.min(x, y, ...) 从数字列表中找出最小值。 Math.max(x, y, ...) 从数字列表中找出最大值。
标签:舍入,...,数字,整数,基本功能,Math From: https://www.cnblogs.com/jiangyueniannian/p/17813415.html