If I am attempting to get something by key and it ...
# getting-started
a
If I am attempting to get something by key and it returns null if not found, and I write
val test = myObj.get("key")?.value
will that also return null? In other words, I won't get an NPE, right?