3.10 Math 相關函式

Math.floor()

無條件進位到較小整數,例:

console.log( Math.floor(4.4) );  // 4
console.log( Math.floor(-4.4) ); // -5

Math.random()

在數值 0 ~ 1 之間,隨機產生小數點。(有包含 0,但不包含 1),例:

console.log( Math.random() );

隨機產生 0 ~ 9 之間的整數(含 0、9),例:

console.log( Math.floor(Math.random() * 10) );      // 0 ~ 9

Last updated