JavaScript Math.cos 方法
Math.cos 方法用于取得数值的余弦值。语法如下:
Math.cos(x)
参数 | 说明 |
---|---|
x | 必需。必须是一个数值。 |
返回值
返回 x 的余弦值,即 -1 到 1 之间的数值。
Math.cos 方法实例
该例子取得不同数的余弦值:
<script language="JavaScript"> document.write( Math.cos(0.35) + "<br />" ); document.write( Math.cos(-0.35) + "<br />" ); document.write( Math.cos(0) + "<br />" ); document.write( Math.cos(Math.PI) ); </script>
运行该例子,输出:
0.9393727128473789 0.9393727128473789 1 -1