Hàm asin () của đối tượng Math chấp nhận một số và trả về giá trị cung sin của nó tính bằng radian. Để chuyển giá trị kết quả thành độ, hãy nhân nó với 180 và chia kết quả cho 3,14159 (giá trị pi).
Cú pháp
Cú pháp của nó như sau
Math.asin(0.5)
Ví dụ
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.asin(0.5); document.write("arcsine value: "+result); document.write("<br>"); document.write("arcsine value in degrees: "+result*180/Math.PI); </script> </body> </html>
Đầu ra
arcsine value: 0.5235987755982989 arcsine value in degrees: 30.000000000000004