数学函数

Math

数学计算,支持属性PI和E,例:var pi = Math.PI; var random = Math.random()。sinasincosacostanatanatan2explogpowsqrtabsceilfloorroundmaxminrandom

sin

sin,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

asin

asin,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

cos

cos,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

acos

acos,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

tan

tan,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

atan

atan,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

atan2

atan2,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x
y float或integer 必填 y

exp

exp,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

log

log,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

pow

pow,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x
y float或integer 必填 y

sqrt

sqrt,返回float。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

abs

abs,返回float或integer。
参数:
参数名 类型 必填 说明
x float或integer 必填 x

ceil

向上取整,返回integer。
参数:
参数名 类型 必填 说明
x float 必填 x

floor

向下取整,返回integer。
参数:
参数名 类型 必填 说明
x float 必填 x

round

四舍五入,返回intger。
参数:
参数名 类型 必填 说明
x float 必填 x

max

max,返回float或integer。
参数:
参数名 类型 必填 说明
x float或integer 必填 x
y float或integer 必填 y

min

min,返回float或integer。
参数:
参数名 类型 必填 说明
x float或integer 必填 x
y float或integer 必填 y

random

返回[0,1)随机float。
参数:
参数名 类型 必填 说明