博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript标准库之 - Math
阅读量:5928 次
发布时间:2019-06-19

本文共 1067 字,大约阅读时间需要 3 分钟。

属性

欧拉常数,也是自然对数的底数, 约等于 2.718.
2的自然对数, 约等于0.693.
10的自然对数, 约等于 2.303.
以2为底E的对数, 约等于 1.443.
以10为底E的对数, 约等于 0.434.
圆周率,一个圆的周长和直径之比,约等于 3.14159.
1/2的平方根, 约等于 0.707.
2的平方根,约等于 1.414.
返回x的绝对值.
返回x的反余弦值.
 
返回x的反双曲余弦值.
返回x的反正弦值.
 
返回x的反双曲正弦值.
以介于 -PI/2 与 PI/2 弧度之间的数值来返回 x 的反正切值.
 
返回 x 的反双曲正切值.
返回 y/x 的反正切值.
 
返回x的立方根.
返回x向上取整后的值.
 
Returns the number of leading zeroes of a 32-bit integer.
返回x的余弦值.
 
返回x的双曲余弦值.
返回 Ex, 当x为参数,  E 是欧拉常数 (2.718...), 自然对数的底.
 
返回 exp(x)-1 的值.
返回小于x的最大整数。
 
Returns the nearest   float representation of a number.
 
Returns the square root of the sum of squares of its arguments.
 
Returns the result of a 32-bit integer multiplication.
Returns the natural logarithm (loge, also ln) of a number.
 
Returns the natural logarithm of 1 + x (loge, also ln) of a number.
 
Returns the base 10 logarithm of x.
 
Returns the base 2 logarithm of x.
返回0个到多个数值中最大值.
返回0个到多个数值中最小值.
返回x的y次幂.
返回0到1之间的伪随机数.
返回四舍五入后的整数.
 
返回x的符号函数, 判定x是正数,负数还是0.
返回正弦值.
 
返回x的双曲正弦值.
返回x的平方根.
返回x的正切值.
 
返回x的双曲正切值.
Math.toSource() 
返回字符串 "Math".
 
返回x的整数部分,去除小数. 

转载于:https://www.cnblogs.com/tian-sun/p/7405751.html

你可能感兴趣的文章
我看的书籍
查看>>
pb 动态改变DW的WHERE子句
查看>>
ios 贝塞尔动画
查看>>
Mac 修改用户名
查看>>
Primes on Interval
查看>>
springmvc国际化
查看>>
利用bootstrap插件设置时间
查看>>
zend guard6的使用
查看>>
pta7-7旅游规划(dijkstra算法)
查看>>
pta l2-6(树的遍历)
查看>>
练习题|网络编程-socket开发
查看>>
python中的logger模块详细讲解
查看>>
经典面试题:用户反映你开发的网站访问很慢可能会是什么原因
查看>>
上周面试回来后写的Java面试总结,想进BAT必看
查看>>
Git 远程分支的查看及相关问题
查看>>
WPF/MVVM 快速开发
查看>>
JavaScript基础和js概括
查看>>
代码设置Shape和Selector
查看>>
WOL远程开机
查看>>
Getting the first day in a week with T-SQL
查看>>