When you assign to another variable like so: j = i++, j will get non-incremented i value. j = ++i on the other hand, j will get i+1. So, that is what people mean by 'increment first, then assign (++i) vs assign then increment (i++)'
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)