What is the diffference between = and ==?
Sigiloso
= is when u wanna set a certain value into the variable. ie: X = 5 ; (the value 5 is set into X) As for === is used when you wanna compare the variable to a certain value. ie. If X == 5; (IF X is equal to 5.)