Math.sqrt是返回數的平方根bash
Math.sqrt(9) 等於3;
複製代碼
Math.abs是返回x的絕對值dom
Math.abs(-2)等於2;
複製代碼
Math.pow是返回x的y次冪spa
Math.pow(4,3)等於64;
複製代碼
Math.floor是向下取整數code
Math.floor(3.8)等於3;
複製代碼
Math.ceil是向上取整數class
Math.ceil(3.8)等於4;
複製代碼
Math.max是取一組數中的最大一項隨機數
Math.max(23, 45, 6, 2, 4, 5, 234, 6, 45)等於234;
複製代碼
Math.min是取一組數中的最小一項copy
Math.max(23, 45, 6, 2, 4, 5, 234, 6, 45)等於2;
複製代碼
Math.round是四捨五入爲最接近的整數co
Math.round(3.4)等於3;
複製代碼
Math.round(3.6)等於4;
複製代碼
Math.random是[0-1)之間的隨機小數(注:包含0但不包含1)ab
Math.random() * 9是[0-9)之間的隨機數;
複製代碼
Math.random * 10 + 1是[1-11)之間的隨機數;
複製代碼
[n-m)之間的隨機數
Math.random * (m - n) + n;
複製代碼
[n-m]之間的隨機整數
Math.round(Math.random * (m - n) + n);
複製代碼