标签: js小数取整
thumbnail

js小数取整的方式有哪些

js小数取整的方式: 1、Math.round() 四舍五入取整,可以将小数取到最接近的整数。 2、Math.ceil() 向上取整,可以将小数取到比其大的最小整数。 3、Math.flo……