Math.min()和Math.max()用于确定一组数中的最值。对于数组操作:Math.max(...arr)。
Math.ceil(): 向上舍入为最接近的整数。
Math.floor(): 向下取整。
Math.round(): 四舍五入。
Math.fround(): 返回数值最接近的单精度(32位)浮点值表示。
Math.random(): 返回一个0-1的随机数,包括0,但不包括1。
Math.abs(x): x绝对值。
Math.pow(x,power): x的power次幂。