js取整数、取余数的方法
1、丢弃小数部分,保留整数部分:parseInt()


2、向上取整,有小数就整数部分加1:Math.ceil()


3、四舍五入:Math.round()


4、向下取整:Math.floor()



? ? // 向上取整
? ? var ceil = Math.ceil(5 / 2)
? ? console.log('++++++++++', ceil) // 3


? ? // 向下取整
? ? var floor = Math.floor(5 / 2)
? ? console.log('----------', floor) // 2


? ? // 四舍五入
? ? var round1 = Math.round(5 / 2),
? ? round2 = Math.round(10 / 3)
? ? console.log('**********', round1) // 3
? ? console.log('**********', round2) // 3
?
08-29 11:25