4.3 數學(Math)
Math.PI
console.log(Math.PI); // 3.141592653589793Math.abs()
console.log(Math.abs(-4.7)); // 4.7Math.round()
console.log(Math.round(4.5)); // 5
console.log(Math.round(4.4)); // 4
console.log(Math.round(-4.5)); // -4 (留意:不是 -5)
console.log(Math.round(-4.4)); // -4
console.log(Math.round(-4.5001)); // -5
console.log(Math.round(-4.4999)); // -4Math.pow()
Math.sqrt()
Math.ceil()
Math.floor()
Math.min()
Math.max()
Math.random()
練習
Last updated