JavaScript - Metodo Math sqrt
Descrizione
Questo metodo restituisce la radice quadrata di un numero. Se il valore di un numero è negativo, sqrt restituisce NaN.
Sintassi
La sua sintassi è la seguente:
Math.sqrt( x ) ;
Dettagli dei parametri
x - Un numero
Valore di ritorno
Restituisce la radice quadrata di un dato numero.
Esempio
Prova il seguente programma di esempio.
<html>
<head>
<title>JavaScript Math sqrt() Method</title>
</head>
<body>
<script type = "text/javascript">
var value = Math.sqrt( 0.5 );
document.write("First Test Value : " + value );
var value = Math.sqrt( 81 );
document.write("<br />Second Test Value : " + value );
var value = Math.sqrt( 13 );
document.write("<br />Third Test Value : " + value );
var value = Math.sqrt( -4 );
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
Produzione
First Test Value : 0.7071067811865476
Second Test Value : 9
Third Test Value : 3.605551275463989
Fourth Test Value : NaN