> Math.abs(-2) 2 > Math.pow(3, 2) // 3^2 9 > Math.max(2, -1, 5) 5 > Math.round(1.9) 2 > Math.cos(Math.PI) // 预定义常量π -1