欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript中的Math.sin()方法使用详解

程序员文章站 2023-11-27 21:14:22
 这个方法返回一个数字的正弦。sin方法返回-1到1之间的数值,它表示参数的正弦值。 语法 math.sin( x ) ; 下面是参数的...

 这个方法返回一个数字的正弦。sin方法返回-1到1之间的数值,它表示参数的正弦值。
语法

math.sin( x ) ;

下面是参数的详细信息:

  •     x: 一个数字

返回值:

  • 返回一个数字的正弦值

例子:

<html>
<head>
<title>javascript math sin() method</title>
</head>
<body>
<script type="text/javascript">

var value = math.sin( 0.5 );
document.write("first test value : " + value ); 
 
var value = math.sin( 90 );
document.write("<br />second test value : " + value ); 

var value = math.sin( 1 );
document.write("<br />third test value : " + value ); 

var value = math.sin( math.pi/2 );
document.write("<br />fourth test value : " + value ); 
</script>
</body>
</html>

这将产生以下结果:

first test value : 0.479425538604203
second test value : 0.8939966636005578
third test value : 0.8414709848078965
fourth test value : 1