The Increment Operator ++
Description
The increment operator (++) adds 1 from the operand.
If it is placed after the operand, it returns the value before the increment.
If it is placed before the operand, it returns the value after the increment.
See Also:
Arithmetic Operators (+ - * /)
The Exponentiation Operator (**)
The Remainder Operator (%)
The Increment Operator (++)
The Decrement Operator (--)
Browser Support
++
is an ECMAScript1 (JavaScript 1997) feature.
It is supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |