1 . Math.ceil() 向上取整 2. Math.floor() 向下取整 3. Math.round() 四捨五入取整 4. Math.random() 生成隨機數 生成n - m 的隨機整數 parseInt(n + Math.random()*(m-n+1)); parseInt是強制 ...
1 . Math.ceil() 向上取整
2. Math.floor() 向下取整
3. Math.round() 四捨五入取整
4. Math.random() 生成隨機數 生成n - m 的隨機整數 parseInt(n + Math.random()*(m-n+1)); parseInt是強制類型轉化,轉化為整數值
5. Math.abs() 取絕對值
6. Math.PI 數學上圓周率
7. Math.max() 取最大值 用法:Math.max(1,2,6,7,8,9) 註意:參數不能是數組,只能用前面的形式
8. Math.min() 取最小值 用法:Math.min(1,2,6,7,8,9) 註意:參數不能是數組,只能用前面的形式
9. Math.sin(x) 正弦
10. Math.cos(x) 餘弦
11.Math.tan(x) 正切
12. Math.pow(x,y) x的y次方
13. Math.sqrt() 取開方