Yeah, any method call on the object can use the `?...
# getting-started
b
Yeah, any method call on the object can use the
?.
notation for safety
v
brianwernick: !! is just tell the compiler to stop give me warning , things like that right?
b
No,
!!
asks the language to throw an Exception (runtime) if the object you are accessing is null instead of safely ignoring it which
?.
does
v
That is nice, Thanks