网易微专业-JS07数值

1、Math.abs(x) 绝对值

2、Math.round(x) 四舍五入

3、Math.ceil(x) 向上取整

4、Math.floor(x) 向下取整

网易微专业-JS07数值_第1张图片
Paste_Image.png

5、Math.max([value1[value2[,...]]])
Math.max(1,2)//2
Math.max(-1,-2,-3)//-1

6、Math.min([value1[value2[,...]]])
Math.min(1,2)//1
Math.min(-1,-2,-3)//-3

7、0<=Math.random()<1

8、Math的其他方法

网易微专业-JS07数值_第2张图片

9、parseInt(string,radix) radix一般为十进制,可以不写.


网易微专业-JS07数值_第3张图片
Paste_Image.png

10、parseFloat(string)

网易微专业-JS07数值_第4张图片
Paste_Image.png

11、Number(value)

网易微专业-JS07数值_第5张图片
Paste_Image.png

12、num.toFixed(digits) 保留几位小数点,输出结果为字符串

网易微专业-JS07数值_第6张图片
Paste_Image.png

Q:如何获取一个大于等于0且小于等于9的随机整数?
A:Math.floor(Math.random()*10);

你可能感兴趣的:(网易微专业-JS07数值)