[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Operators/Decrement [Back]  [Original]

(--) - JavaScript | MDN

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

(--)

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since 2015 ..

(--) ( ) .

In this article

let x = 3;
const y = x--;

console.log(`x:${x}, y:${y}`);
// Expected output: "x:2, y:3"

let a = 3;
const b = --a;

console.log(`a:${a}, b:${b}`);
// Expected output: "a:2, b:2"

Operator: x-- or --x

, (, x--), .

, (, --x), .

js
let x = 3;
y = x--;

// y = 3
// x = 2

js
let a = 2;
b = --a;

// a = 1
// b = 1

Specification
ECMAScript 2027 LanguageSpecification
# sec-postfix-decrement-operator


Web Proxy Viewer  |  New URL  |  Original Page