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

function difference(a, b) {
  return Math.abs(a - b);
}

console.log(difference(3, 5));
// Expected output: 2

console.log(difference(5, 3));
// Expected output: 2

console.log(difference(1.23456, 7.89012));
// Expected output: 6.6555599999999995

Syntax

js
Math.abs(x)

Parameter

x

Eine Zahl.

Rückgabewert

Der Absolutwert von x. Falls 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, wird sie immer als Math.abs() verwendet, anstatt als Methode eines erstellten Math-Objekts (da Math kein Konstruktor ist).

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

Umwandlung 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® 2025 Language Specification
# sec-math.abs

Browser-Kompatibilität

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
abs

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

Siehe auch