Death wrote:
I personally prefer i -=- 1
i mean, thats one way to write code nobody will want to steal
Winnyace wrote:
used that countless times. papa bless the guy who came out with the idea of -=-
Its not a very good idea.
i -= (value) is just shorthand for i = i - (value)
and the value being subtracted is -1
so you're just doing: i = i - (-1)
which is just i = i + 1
which is just a longer way of accomplishing ++i
Death you are a top tier code troll.
++User.byUsername("Lights").socialStats[User.byUsername("Death").userid].respect;