Font-size: A A A
The -- is the arithmetic pre-or-post decrement operator. This operator is used to pre- or post-decrement (decrease) the value of an integer by 1.
count = count--; count = --count;