JavaScript - Metodo matematico acos
Descrizione
Questo metodo restituisce l'arcocoseno in radianti di un numero. Il metodo acos restituisce un valore numerico compreso tra 0 e pi radianti per x compreso tra -1 e 1. Se il valore di numero è al di fuori di questo intervallo, restituisce NaN.
Sintassi
La sua sintassi è la seguente:
Math.acos( x ) ;
Dettagli dei parametri
x - Un numero.
Valore di ritorno
Restituisce l'arcocoseno in radianti di un numero.
Esempio
Prova il seguente programma di esempio.
<html>
<head>
<title>JavaScript Math acos() Method</title>
</head>
<body>
<script type = "text/javascript">
var value = Math.acos(-1);
document.write("First Test Value : " + value );
var value = Math.acos(null);
document.write("<br />Second Test Value : " + value );
var value = Math.acos(30);
document.write("<br />Third Test Value : " + value );
var value = Math.acos("string");
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
Produzione
First Test Value : 3.141592653589793
Second Test Value : 1.5707963267948966
Third Test Value : NaN
Fourth Test Value : NaN