==

Compares two Strings for equality. The comparison is case-sensitive, meaning the String "hello" is not equal to the String "HELLO". Functionally the same as equals() myString1 == myString2
myString1: a String variable. myString2: a String variable. true: if myString1 equals myString2. false: otherwise.