Math.SQRT1_2

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die Math.SQRT1_2 statische Dateneigenschaft repräsentiert die Quadratwurzel von 1/2, welche ungefähr 0.707 ist.

Probieren Sie es aus

Wert

𝙼𝚊𝚝𝚑.𝚂𝚀𝚁𝚃𝟷_𝟸 = 1 2 0.707 \mathtt{Math.SQRT1_2} = \sqrt{\frac{1}{2}} \approx 0.707
Eigenschaften der Math.SQRT1_2-Property
Schreibbar nein
Aufzählbar nein
Konfigurierbar nein

Beschreibung

Math.SQRT1_2 ist eine Konstante und eine performantere Entsprechung zu Math.sqrt(0.5).

Da SQRT1_2 eine statische Eigenschaft von Math ist, verwenden Sie es immer als Math.SQRT1_2, anstatt als Eigenschaft eines von Ihnen erstellten Math Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.SQRT1_2

Die folgende Funktion gibt 1 über der Quadratwurzel von 2 zurück:

js
function getRoot1_2() {
  return Math.SQRT1_2;
}

getRoot1_2(); // 0.7071067811865476

Spezifikationen

Specification
ECMAScript Language Specification
# sec-math.sqrt1_2

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch