So I took a look at the code that controls the counter on the SO advertising page. Then I saw the line where this occured i-->. What does this do?
i-->
He
i-->0 is the same as i-- > 0, so the comparison expression if the evaluated value of i-- is greater than 0.
i-->0
i-- > 0
i--
0