3.10 Math 相關函式
Math.floor()
console.log( Math.floor(4.4) ); // 4
console.log( Math.floor(-4.4) ); // -5Math.random()
console.log( Math.random() );console.log( Math.floor(Math.random() * 10) ); // 0 ~ 9Last updated
console.log( Math.floor(4.4) ); // 4
console.log( Math.floor(-4.4) ); // -5console.log( Math.random() );console.log( Math.floor(Math.random() * 10) ); // 0 ~ 9Last updated