I recently came across this syntax ??
. Does this do the same operation that a ternary operator does?
<Text> You are selecting {city?.name ?? 'none'} : {street?.name ?? 'none'}</Text>
If no, how is this different from the ternary condition
<condition> ? doSomething: doAnotherThing