JavaScript - Proprietà matematica SQRT1_2
Descrizione
Restituisce la radice quadrata di 1/2; equivalentemente, 1 sulla radice quadrata di 2 che è circa 0,707.
Sintassi
La sua sintassi è la seguente:
Math.SQRT1_2
Esempio
Prova il seguente programma di esempio.
<html>
<head>
<title>JavaScript Math SQRT1_2 Property</title>
</head>
<body>
<script type = "text/javascript">
var property_value = Math.SQRT1_2
document.write("Property Value is : " + property_value);
</script>
</body>
</html>
Produzione
Property Value is : 0.7071067811865476