--- title: Math.SQRT2 slug: Web/JavaScript/Reference/Global_Objects/Math/SQRT2 tags: - JavaScript - Math - Property - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Math/SQRT2 ---
Die Math.SQRT2
Eigenschaft repräsentiert die Quadratwurzel aus 2, welche gerundet 1,414 ist:
Weil SQRT2
eine statische Eigenschaft von Math
ist, muss immer Math.SQRT2
genutzt werden, ohne dass ein Math
-Objekt erstellt wird (Math
ist kein Konstruktor).
Math.SQRT2
Die folgende Funktion gibt die Quadratwurzel aus 2 zurück:
function getRoot2() { return Math.SQRT2 } getRoot2() // 1.4142135623730951
Spezifikation | Status | Kommentar |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Initiale Definition. Implementiert in JavaScript 1.0. |
{{SpecName('ES5.1', '#sec-15.8.1.8', 'Math.SQRT2')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-math.sqrt2', 'Math.SQRT2')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-math.sqrt2', 'Math.SQRT2')}} | {{Spec2('ESDraft')}} |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("javascript.builtins.Math.SQRT2")}}