console.log(Math.ceil(1.1));//上舍入 (取大數(shù))
console.log(Math.floor(1.9));//下舍入 (取小數(shù))
console.log(Math.round(2.5));//四舍五入
//產(chǎn)生 x - y 的隨機(jī)數(shù)甥温,包括x 但不包括y
//Math.random()*(y-x)+x;
//產(chǎn)生 從x-y的隨機(jī)數(shù),包括x也包括y
//=Math.random(y-x+1)+x