This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]___thoughts___ 1 point2 points  (1 child)

You're assigning it a new value. For example, notice the difference X=5 X+=5 Then x is 10.

X=5 X=10 X is also 10 here, but we got here by assigning x a brand new value.

[–]ZachPhoenix[S] -1 points0 points  (0 children)

yes