1. 程式人生 > >js 取整

js 取整

1.丟棄小數部分,保留整數部分 

    js:parseInt(7/2) 

2.向上取整,有小數就整數部分加1 

    js: Math.ceil(7/2) 

3,四捨五入. 
    js: Math.round(7/2) 

4,向下取整 

    js: Math.floor(7/2)