Math.abs()

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 statische Methode Math.abs() gibt den Absolutwert einer Zahl zurück.

Probieren Sie es aus

Syntax

js
Math.abs(x)

Parameter

x

Eine Zahl.

Rückgabewert

Der Absolutwert von x. Wenn x negativ oder -0 ist, wird die entgegengesetzte Zahl -x (die nicht negativ ist) zurückgegeben. Andernfalls wird x selbst zurückgegeben. Das Ergebnis ist daher immer eine positive Zahl oder 0.

Beschreibung

Da abs() eine statische Methode von Math ist, verwenden Sie sie immer als Math.abs() und nicht als Methode eines von Ihnen erstellten Math-Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.abs()

js
Math.abs(-Infinity); // Infinity
Math.abs(-1); // 1
Math.abs(-0); // 0
Math.abs(0); // 0
Math.abs(1); // 1
Math.abs(Infinity); // Infinity

Typumwandlung des Parameters

Math.abs() wandelt seinen Parameter in eine Zahl um. Nicht umwandelbare Werte werden zu NaN, wodurch Math.abs() ebenfalls NaN zurückgibt.

js
Math.abs("-1"); // 1
Math.abs(-2); // 2
Math.abs(null); // 0
Math.abs(""); // 0
Math.abs([]); // 0
Math.abs([2]); // 2
Math.abs([1, 2]); // NaN
Math.abs({}); // NaN
Math.abs("string"); // NaN
Math.abs(); // NaN

Spezifikationen

Specification
ECMAScript Language Specification
# sec-math.abs

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch