Checks if a text equals another text. This check is case-sensitive and does not ignore diacritics (accents).
Syntax
text_a == text_b
Returns
Returns boolean true if text_a
equals text_b
. Returns boolean false if text_a
does not equal text_b
.
Examples
"Hello World" == "Hello world" /* results in false */