码迷,mamicode.com
首页 > 编程语言 > 详细

javascript Math对象 常用数字操作方法

时间:2020-02-16 20:41:30      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:对象   强制转换   math   style   dom   常用   oat   pre   round   

 1  2  
 3  4 
 5 var t=‘1.2‘;
 6 parseInt(t) //1
 7 parseFloat(t)//1.2
 8 Number(1.2)//1.2强制转换为数字
 9 
10 
11 2.向上取整,有小数就整数部分加1 
12 js: Math.ceil(7/2) 
13 
14 3,四舍五入. 
15 js: Math.round(7/2) 
16 
17 4,向下取整
18 js: Math.floor(7/2)
19 
20 Math.abs() 绝对值
21 
22 
23 Math.floor(Math.random()*(100-10+1)+10);//100-10随机数

 

javascript Math对象 常用数字操作方法

标签:对象   强制转换   math   style   dom   常用   oat   pre   round   

原文地址:https://www.cnblogs.com/weihexinCode/p/12318307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!