轻松掌握JavaScript中的Math object数学对象

前端之家收集整理的这篇文章主要介绍了轻松掌握JavaScript中的Math object数学对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

对于内置的Math数学常项和函数也有一些属性方法。 比方说, Math对象的 PI 属性会有属性值 pi (3.141...),你可以像这样调用它:

同理,标准数学函数也是Math的方法。 这些包括三角函数​​,对数,指数,和其他函数。比方说你想使用三角函数 sin, 你可以这么写:

需要注意的是Math的所有三角函数参数都是弧度制。 和其他对象不同,你不能够创建一个自己的Math对象。你只能使用内置的Math对象。

eg: 1.min( )和max(

)

2.舍入方法

Math.ceil( ):向上舍入 Math.floor( ):向下舍入 Math.round( ):四舍五入

3.random( )

Math.random( )方法返回介于0和1之间的一个随机数,不包括0和1

4.round()

如何使用 round()。

<script type="text/javascript">

document.write(Math.round(0.60) + "
")
document.write(Math.round(0.50) + "
")
document.write(Math.round(0.49) + "
")
document.write(Math.round(-4.40) + "
")
document.write(Math.round(-4.60))

5.random()

如何使用 random() 来返回 0 到 1 之间的随机数。

<script type="text/javascript">

document.write(Math.random())

原文链接:https://www.f2er.com/js/48426.html

猜你在找的JavaScript相关文章