Subtraktion (-)

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.

Der Subtraktionsoperator (-) zieht den zweiten Operanden vom ersten ab und liefert deren Unterschied.

Probieren Sie es aus

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

console.log(3.5 - 5);
// Expected output: -1.5

console.log(5 - "hello");
// Expected output: NaN

console.log(5 - true);
// Expected output: 4

Syntax

js
x - y

Beschreibung

Der --Operator ist für zwei Arten von Operanden überladen: number und BigInt. Zuerst wandelt er beide Operanden in numerische Werte um und überprüft ihre Typen. Wenn beide Operanden zu BigInt werden, führt er eine BigInt-Subtraktion aus; ansonsten erfolgt eine Subtraktion auf Basis von Zahlen. Ein TypeError wird ausgelöst, wenn ein Operand zu einem BigInt umgewandelt wird, der andere jedoch eine Zahl ist.

Beispiele

Subtraktion mit Zahlen

js
5 - 3; // 2
3 - 5; // -2

Andere Nicht-BigInt-Werte werden in Zahlen umgewandelt:

js
"foo" - 3; // NaN; "foo" is converted to the number NaN
5 - "3"; // 2; "3" is converted to the number 3

Subtraktion mit BigInts

js
2n - 1n; // 1n

BigInt- und Zahl-Operanden können bei der Subtraktion nicht gemischt werden.

js
2n - 1; // TypeError: Cannot mix BigInt and other types, use explicit conversions
2 - 1n; // TypeError: Cannot mix BigInt and other types, use explicit conversions

Um eine Subtraktion mit einem BigInt und einem Nicht-BigInt durchzuführen, konvertieren Sie einen der Operanden:

js
2n - BigInt(1); // 1n
Number(2n) - 1; // 1

Spezifikationen

Specification
ECMAScript® 2025 Language Specification
# sec-subtraction-operator-minus

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
Subtraction (-)

Legend

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

Full support
Full support

Siehe auch