|
equals >>-equals(other)------------------------------------------------------->< Returns .true ("1") if the target string is strictly equal to the [other] string. Returns .false ("0") if the two strings are not strictly equal. This is the same comparison performed by the "==" comparison method. String class - equals method
"3"~equals("3") -> 1
"33"~equals("3") -> 0
"4"~equals("3") -> 0
|