Math.sin()傳回數值的正弦
- 詳細內容
- 分類:Javascript
- 發佈:2013-05-22, 週三 10:12
- 點擊數:1975
Javascript的Math.sin()方法:
sin()方法是一個靜態方法,只能藉由Math.sin()來呼叫。Math.sin()方法會傳回介於-1~1之間的值,代表的是三角函數中的正弦。
Math.sin()的語法:
Math.sin(x)
x:數值。
Math.sin()的範例:
<script type="text/javascript">
document.writeln(Math.sin(Math.PI));
document.writeln("<br/>");
document.writeln(Math.sin(Math.PI/2));
document.writeln("<br/>");
</script>
Math.sin()的範例輸出:
1.2246063538223773e-16
1
關於Math物件的其他屬性與方法,請參考:數學物件 Math。
按個讚!~支持本站!~
FB推薦載入中