javascript内置对象之一Math

1,圆周率的获取

var a=Math.PI
console.log(a);

2,取整只看小数点后一位,遵循四舍五入 的原则;
Math.round

console.log(Math.round(15.6))  //16

3,随机数
Math.random()

console.log(Math.random())//随机数0~1,但不包括0和1

4,向上取整
Math.ceil()

console.log(Math.ceil(3.1))//4

5,向下取整
Math.floor()

console.log(Math.floor(4.9))//4

6,多参数取最大值
Math.max()

console.log(Math.max(14,52,64,55,4,91,46))//91

7,多参数取最小值
Math.mix()

console.log(Math.mix(14,52,64,55,4,91,46))//4

8,计算n的m次方
Math.pow

console.log(Math.pow(n,m))

9,开平方
Math.sqrt()

console.log(Math.sqrt(9))//3

10,sin cos接收得是弧度

console.log(Math.sin(Math.PI/180*90));
console.log(Math.cos(Math.PI/180*90));

11,最大值和最小值时接收的不能是数组,要是强行接收的话得到的是NaN;

javascript内置对象之一Mathjavascript内置对象之一Math Gx sir 发布了1 篇原创文章 · 获赞 0 · 访问量 8 私信 关注
上一篇:Python学习心得2:求平均值


下一篇:PAT甲级真题 1012 The Best Rank (25分) C++实现(vector排序后,map记录)