Math對(duì)象是JavaScript的內(nèi)置對(duì)象,提供一系列數(shù)學(xué)常數(shù)和數(shù)學(xué)方法御蒲。Math對(duì)象只提供了靜態(tài)的屬性和方法掘剪,所以使用時(shí)不用實(shí)例化。
Math對(duì)象的屬性
屬性 | 說明 |
---|---|
Math.E | 歐拉常數(shù)画拾,也是自然對(duì)數(shù)的底數(shù), 約等于 2.718. |
Math.LN2 | 2的自然對(duì)數(shù), 約等于0.693. |
Math.LN10 | 10的自然對(duì)數(shù), 約等于 2.303. |
Math.LOG2E | 以2為底E的對(duì)數(shù), 約等于 1.443. |
Math.LOG10E | 以10為底E的對(duì)數(shù), 約等于 0.434. |
Math.PI | 圓周率啥繁,一個(gè)圓的周長(zhǎng)和直徑之比,約等于 3.14159. |
Math.SQRT1_2 | 1/2的平方根, 約等于 0.707. |
Math.SQRT2 | 2的平方根,約等于 1.414. |
Math對(duì)象的方法
三角函數(shù)(sin()
, cos()
, tan()
,asin()
, acos()
, atan()
, atan2()
)是以弧度返回值的青抛∑烀觯可以通過除法Math.PI / 180
把弧度轉(zhuǎn)換為角度,也可以通過其他方法來轉(zhuǎn)換蜜另。
方法 | 說明 |
---|---|
Math.abs(x) | 返回x的絕對(duì)值. |
Math.acos(x) | 返回x的反余弦值. |
Math.acosh(x) | 返回x的反雙曲余弦值. |
Math.asin(x) | 返回x的反正弦值. |
Math.asinh(x) | 返回x的反雙曲正弦值. |
Math.atan(x) | 以介于 -PI/2 與 PI/2 弧度之間的數(shù)值來返回 x 的反正切值. |
Math.atanh(x) | 返回 x 的反雙曲正切值. |
Math.atan2(x, y) | 返回 y/x 的反正切值. |
Math.cbrt(x) | 返回x的立方根. |
Math.ceil(x) | 返回x向上取整后的值. |
Math.clz32(x) | Returns the number of leading zeroes of a 32-bit integer. |
Math.cos(x) | 返回x的余弦值. |
Math.cosh(x) | 返回x的雙曲余弦值. |
Math.exp(x) | 返回 Ex, 當(dāng)x為參數(shù), E 是歐拉常數(shù) (2.718...), 自然對(duì)數(shù)的底. |
Math.expm1(x) | 返回 exp(x)-1 的值. |
Math.floor(x) | 返回小于x的最大整數(shù)适室。 |
Math.fround(x) | Returns the nearest single precision float representation of a number. |
Math.hypot([x[,y[,…]]]) | Returns the square root of the sum of squares of its arguments. |
Math.imul(x) | Returns the result of a 32-bit integer multiplication. |
Math.log(x) | Returns the natural logarithm (loge, also ln) of a number. |
Math.log1p(x) | Returns the natural logarithm of 1 + x (loge, also ln) of a number. |
Math.log10(x) | Returns the base 10 logarithm of x. |
Math.log2(x) | Returns the base 2 logarithm of x. |
Math.max([x[,y[,…]]]) | 返回0個(gè)到多個(gè)數(shù)值中最大值. |
Math.min([x[,y[,…]]]) | 返回0個(gè)到多個(gè)數(shù)值中最小值. |
Math.pow(x,y) | 返回x的y次冪. |
Math.random() | 返回0到1之間的偽隨機(jī)數(shù). 可能等于0,但是一定小于1 |
Math.round(x) | 返回四舍五入后的整數(shù).但是Math.round(-4.40) 值為-4 |
Math.sign(x) | 返回x的符號(hào)函數(shù), 判定x是正數(shù),負(fù)數(shù)還是0. |
Math.sin(x) | 返回正弦值. |
Math.sinh(x) | 返回x的雙曲正弦值. |
Math.sqrt(x) | 返回x的平方根. |
Math.tan(x) | 返回x的正切值. |
Math.tanh(x) | 返回x的雙曲正切值. |
Math.toSource() | 返回字符串 "Math". |
Math.trunc(x) | 返回x的整數(shù)部分,去除小數(shù). |
使用Math.random()
生成隨機(jī)數(shù)
- 寫一個(gè)函數(shù)举瑰,返回從min到max之間的隨機(jī)整數(shù)捣辆,包括min不包括max
function getRandomArbitrary(min, max) {
return min + Math.random() * (max - min);
}
- 寫一個(gè)函數(shù),返回從min都max之間的 隨機(jī)整數(shù)此迅,包括min包括max
function getRandomInt(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
- 寫一個(gè)函數(shù)汽畴,生成一個(gè)長(zhǎng)度為 n 的隨機(jī)字符串旧巾,字符串字符的取值范圍包括0到9,a到 z忍些,A到Z鲁猩。
function getRandomInt(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
function randomStr(n){
var dict = '1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
var str = '';
for(i = 0; i < n;i++){
str += dict[getRandomInt(0,62)];
}
return str;
}
var str = getRandStr(10);
console.log(str);
- 寫一個(gè)函數(shù),生成一個(gè)隨機(jī) IP 地址罢坝,一個(gè)合法的 IP 地址為 0.0.0.0~255.255.255.255
function getRandomInt(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
function randomIp(n) {
var arr = [];
for (var i = 0; i < 4; i++) {
arr.push(getRandomInt(0, 255));
}
return arr.join('.');
}
var ip = getRandIP()
console.log(ip)
- 寫一個(gè)函數(shù)绳匀,生成一個(gè)隨機(jī)顏色字符串,合法的顏色為
#000000~ #ffffff
function getRandomInt(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
function randomColor() {
var dict = '1234567890abcdef';
var arr = '';
for (var i = 0; i < 6; i++) {
arr += dict[getRandomInt(0, 16)];
}
return '#' + arr;
}
var color = randomColor();
console.log(color);