The Increment operator (++) increments its operand by one.
If used as a postfix, then it returns the value before incrementing.
If used as a prefix, then it returns the value after incrementing.
//postfix
var a = 5, // 5
b = a++, // 5
c = a // 6
In this case, a is incr...