how to check null and undefined in typescript in one check 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();