欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS截取数字

程序员文章站 2022-12-28 17:29:06
Math是javascript的一个内部对象,该对象的方法主要是一些数学计算方法floor:下退 Math.floor(12.9999) = 12ceil:上进 Math.ceil(12.1) = 13;round: 四舍五入 Math.round(12.5) = 13 Math.round(12. ......

math是javascript的一个内部对象,该对象的方法主要是一些数学计算方法
floor:下退 math.floor(12.9999) = 12
ceil:上进 math.ceil(12.1) = 13;
round: 四舍五入 math.round(12.5) = 13  math.round(12.4) = 12