9496 LYNK's site for housing knowledge and information for the team.
== Equals, returns true if both the left side and right side are equal!= Not Equals, returns true if left side is not equal to the right side of operator.> Greater Than, returns true if left side is greater than right.< Less Than, returns true if left side is less than right side.>= Greater Than Or Equals To, returns true if left side is greater than or equal to right side.<= Less Than Or Equals To, returns true if left side is less than or equal to right side.= and ==
= is the assignment operator, it assigns a value to a variable.== is the equals comparison operator, it checks if two things are equalTODO