For example this:
var a = 123; var b = a++;
now a contains 124 and b contains 123
a
124
b
123
Post-increment and pre-increment are common operators in many languages, Javascript being about 30 years from being the first. PHP supports post-increment too.