自增(++)

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.

自增++)运算符对其操作数进行自增(加一),并根据运算符的位置返回自增之前或之后的值。

尝试一下

语法

js
x++
++x

描述

如果使用后缀式,即将运算符放在操作数的后面(例如 x++),操作数会加一,然后返回加一之前的值。

如果使用前缀式,即将运算符放在操作数的前面(例如 ++x),操作数会加一,然后返回加一之后的值。

自增运算符只能应用于引用的操作数(变量和对象属性,即有效的赋值目标)。++x 本身的计算结果是一个值,而不是一个引用,因此不能将多个自增运算符链接在一起。

js
++(++x); // SyntaxError: Invalid left-hand side expression in prefix operation

示例

后缀式

js
let x = 3;
const y = x++;

// x = 4
// y = 3

前缀式

js
let x = 3;
const y = ++x;

// x = 4
// y = 4

规范

Specification
ECMAScript Language Specification
# sec-postfix-increment-operator

浏览器兼容性

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
Increment (++)

Legend

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

Full support
Full support

参见