Die Math.fround()
Funktion gibt die am nächsten gelegenen einfach genaue Repräsentation einer Floatingpoint-Nummer einer Zahl zurück.
Syntax
Math.fround(x)
Parameter
x
- Eine Zahl.
Rückgabewert
Die am nächsten gelegenen einfach genaue Repräsentation einer Floatingpoint-Nummer, der übergebenen Zahl.
Beschreibung
Weil fround()
eine statische Funktion von Math
ist, wird es immer als Math.
fround
()
eingesetzt,
jedoch nicht als Methode eines erzeugten Math
Objektes (Math
ist kein Konstruktor).
Beispiele
Einsatz von Math.fround()
Math.fround(0); // 0 Math.fround(1); // 1 Math.fround(1.337); // 1.3370000123977661 Math.fround(1.5); // 1.5 Math.fround(NaN); // NaN
Polyfill
Diese Funktion kann emuliert werden, wenn Float32Array
verfügbar ist:
Math.fround = Math.fround || (function (array) { return function(x) { return array[0] = x, array[0]; }; })(Float32Array(1));
Spezifikationen
Spezifikation | Status | Kommentar |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) Die Definition von 'Math.fround' in dieser Spezifikation. |
Standard | Initiale Definition. |
ECMAScript 2017 Draft (ECMA-262) Die Definition von 'Math.fround' in dieser Spezifikation. |
Entwurf |
Browserkompatibilität
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 38 | 26 (26) | Nicht unterstützt | 25 | 7.1 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | Nicht unterstützt | (Ja) | (Ja) | Nicht unterstützt | Nicht unterstützt | 8 |
Siehe auch
Schlagwörter des Dokuments und Mitwirkende
Schlagwörter:
Mitwirkende an dieser Seite:
schlagi123
Zuletzt aktualisiert von:
schlagi123,