JS中Math函数的常用方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中Math函数的常用方法相关的知识,希望对你有一定的参考价值。

参考技术A JS中Math函数的常用方法

Math是数学函数,但又属于对象数据类型typeof Math=> ‘object’

console.dir(Math)查看Math的所有函数方法。

1,Math.abs()获取绝对值

Math.abs(-12) = 12

2,Math.ceil() and Math.floor()向上取整和向下取整

console.log(Math.ceil(12.03));//13

console.log(Math.ceil(12.92));//13

console.log(Math.floor(12.3));//12

console.log(Math.floor(12.9));//12

3,Math.round()四舍五入

注意:正数时,包含5是向上取整,负数时包含5是向下取整。

1、Math.round(-16.3) = -16

2、Math.round(-16.5) = -16

3、Math.round(-16.51) = -17

4,Math.random()取[0,1)的随机小数

案例1:获取[0,10]的随机整数

console.log(parseInt(Math.random()*10));//未包含10

console.log(parseInt(Math.random()*10+1));//包含10

案例2:获取[n,m]之间的随机整数

Math.round(Math.random()*(m-n)+n)

5,Math.max() and Max.min()获取一组数据中的最大值和最小值

console.log(Math.max(10,1,9,100,200,45,78));

console.log(Math.min(10,1,9,100,200,45,78));

6,Math.PI获取圆周率π 的值

console.log(Math.PI);

7,Math.pow() and Math.sqrt()

Math.pow()获取一个值的多少次幂

Math.sqrt()对数值开方

Math.pow(10,2) = 100;

Math.sqrt(100) = 10;

js math 对象 以及常用api

一。math api

Math 对象并不像 Date 和 String 那样是对象的类,因此没有构造函数 Math(),像 Math.sin() 这样的函数只是函数,不是某个对象的方法。无需创建它,通过把 Math 作为对象使用就可以调用其所有属性和方法。

取整

//math api 取整
console.log(Math.floor(3.99)); // 3 向下取整
console.log(parseInt(3.99)); //与math.floor相同,都是向下取整。
console.log(Math.ceil(3.01));// 4  向上取整
console.log(Math.round(3.4));//四舍五入取整

随机取整

/*console.log( Math.random() );
console.log( Math.random() );
console.log( Math.random() );
//随机取0-1之间的数
*/
//随机取0-9之间的整数
console.log(Math.floor(Math.random()*10));
console.log(Math.floor(Math.random()*10));
console.log(Math.floor(Math.random()*10));

取0-9 之间的整数 要向下取整    random*10就是到10。

var arr=[‘何旭刚‘,‘李思伟‘,‘金娅‘,‘徐坤‘,‘徐佳鑫‘,‘然哥‘,‘汪洋‘,‘李月‘,‘刘德华‘,‘王凌‘];
//通过数组的下标 来随机取姓名,数组的下标从0开始。
var x=Math.floor(Math.random()*arr.length);
console.log(arr[x]);

3.圆周率 Math.PI     最大值 Math.max()  最小值   Math.min()   绝对值 Math.abs()       x的y次方Math.pow(5,3) 5的3次方

//圆周率
//console.log( Math.PI );
//绝对值
//console.log( Math.abs(-3) );
//最大值
//console.log( Math.max(9,23,78,6,45) );
//最小值
//console.log( Math.min(9,23,78,6,45) );
//x的y次方
console.log( Math.pow(5,3) );

 

以上是关于JS中Math函数的常用方法的主要内容,如果未能解决你的问题,请参考以下文章

js math 对象 以及常用api

js中常用的Math方法

JS中常用的Math方法

cocos2d-js中Math对象的常用方法总结

js Math对象常用方法

JS.Math常用方法大全