Compares two Strings for equality. The comparison is case-sensitive, meaning the String "hello" is not equal to the String "HELLO".
myString.equals(myString2)
myString, myString2: variables of type String.
true: if string equals string2false: otherwise