Thank you very much.

Now all I need to figure out is what you mean by the "=" being used to assign a variable. Can you please give me an example?
Quote:
Originally posted by Indyshooter
I believe that you are correct with your explanation of the logic of the line of code.
!= Does not equal
if(1 != 2) would return true
== Equals
if(1 == 2) would return false
You use = when assigning a variable.
|