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