-
Math.floor() 向下取整
Math.floor(3.141592654) // 3
-
Math.ceil() 向上取整
Math.ceil(3.141592654) // 4
-
Math.round() 四舍五入
Math.round(3.141592654) // 3
-
parseInt() 去掉小数点和小数点后的部分
parseInt(3.141592654) // 3
-
~~ 将数据转化为Number类型
~~3.141592654 // 3
Math.floor() 向下取整
Math.floor(3.141592654) // 3
Math.ceil() 向上取整
Math.ceil(3.141592654) // 4
Math.round() 四舍五入
Math.round(3.141592654) // 3
parseInt() 去掉小数点和小数点后的部分
parseInt(3.141592654) // 3
~~ 将数据转化为Number类型
~~3.141592654 // 3
mikaelav赞 2阅读 2.3k
chokcoco赞 10阅读 2.9k
Change赞 5阅读 5.7k评论 2
云绮棠兮赞 4阅读 3.6k评论 2
alwaysVe赞 2阅读 6.2k评论 5
南玖赞 5阅读 1.2k评论 1
大卫talk赞 2阅读 2.3k
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。