1. 小数部を切り捨て、整数部を残す js:parseInt(7/2) 2. 小数点がある場合は切り上げ、整数部に 1 を足す js: Math.ceil(7/2) 3、切り捨て js: Math.round(7/2) 4、切り捨てjs : Math.floor(7/2)