js_math.round,javascript_math,math.round Math.round()方法的定义和用法: Math.round()方法将对参数进行四舍五入操作。 点击可参阅更多相关Math对象方法和属性。 语法结构: Math.round(x) 参数列表: 实例代码: 实例一: console.log(Math.round(-2.1));
输出结果:-2。 实例二: console.log(Math.round(-2.9));
输出结果:-3。 实例三: console.log(Math.round(2.9));
输出结果:3。 以上内容是小编给大家介绍的JavaScript Math.round() 方法的全部叙述,希望大家喜欢。 js_math.round,javascript_math,math.round
|