1啸盏、Math.round() 這個(gè)方法是求一個(gè)附近的整數(shù)(四舍五入)
//小數(shù)點(diǎn)后一位大于5
正數(shù):Math.round(14.67); //15
負(fù)數(shù):Math.round(-14.67); //-15
//小數(shù)點(diǎn)后一位小于5
正數(shù):Math.round(14.47); //14
負(fù)數(shù):Math.round(-14.47); //-14
//小數(shù)點(diǎn)后一位等于5
正數(shù):Math.round(14.57); //15
負(fù)數(shù):Math.round(-14.57); //-14
2、Math.ceil() 函數(shù)返回大于或等于一個(gè)給定數(shù)字的最小整數(shù)骑祟。
console.log(Math.ceil(.45));
// 1
console.log(Math.ceil(4));
// 4
console.log(Math.ceil(7.004));
// 8
console.log(Math.ceil(-7.004));
// -7
3回懦、Math.floor() 返回小于或等于一個(gè)給定數(shù)字的最大整數(shù)。
Math.floor( 45.95);
// 45
Math.floor( 45.05);
// 45
Math.floor( 4 );
// 4
Math.floor(-45.05);
// -46
Math.floor(-45.95);
// -46
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者