You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Strings are text wrapped in quotation marks ". For example: the string "Hello, World!" represents the text Hello, World!
Operators performed on string
+: String concatenation, used to join 2 strings together. For instance: "Hello, " + "World!" results to "Hello, World!". This can be performed on string (aka joining strings)
==: String equality, compares if 2 strings contain the same content:
!=: Opposite of string equality, compares if 2 strings contain different contents
For example "abcd" equals "abcd" but not equals "ABCD".