Math.abs("-7.65") // 打印 7.65 指代获取这个参数的绝对值,另外括号中,必须是一个数字;Math.min(1,2) // 打印 1 指获取到两个参数中的最小参数;Math.max(1,2) // 打印 2 指获取到两个参数中的最大参数; 更新中