JavaScript Reference/Javascript Methods/asin
"asin()" Example
<source lang="javascript">
<html> <body> <button onclick="alert(Math.asin(1));">ASIN</button> </body> </html>
</source>
"asin()" is applied to
<source lang="javascript">
+----------------+--------------------------------------------------------------+ | Applied_To |Math | +----------------+--------------------------------------------------------------+
</source>
"asin()" Syntax, Parameters and Note
<source lang="javascript">
Note: Arcsine value for the number specified.
Syntax:
Math.asin(param1) Parameters:
param1 Required; the number to convert. </source>