當我使用Math.sin(90)計算JavaScript中的正弦90度時,它返回0.8939966636005565,但sin(90)是1.是否有解決此問題的方法?我需要任何角度的準確值。如何在javascript中使用Math.sin()以獲取正確答案?
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button calculate value of 90 degrees.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction(){
document.getElementById("demo").innerHTML=Math.sin(90);
}
</script>
JavaScript中的trig函數以弧度而非度數運算。 – Pointy
@Pointy可能重複,我不知道它在弧度。 – JaSamSale