js小數取整的幾種方式

1,Math.ceil()方法向上取整,整數部分值+1:web eg:Math.ceil(3/2) 輸出:2svg 2,Math.floor()方法向下取整,整數部分值不變:xml eg:Math.floor(3/2) 輸出:1it 3,Math.round()方法四捨五入取整:webkit eg:Math.round(3/2) 輸出:2方法 4,parseInt()方法 拋去小數部分,只取整數部
相關文章
相關標籤/搜索