what's the `===` here? ```fun compareStrings(s1: S...
# getting-started
e
what's the
===
here?
Copy code
fun compareStrings(s1: String?, s2: String?) {
    s1 == s2
    // is compiled to
    s1?.equals(s2) ?: s2 === null
}