value be object or null in typescript code example
Example 1: typescript null and undefined check
if(!!someValue)
Example 2: typescript null and undefined check
let x = foo?.bar.baz();
if(!!someValue)
let x = foo?.bar.baz();