Cool proposal in general, although there are still cases where _.get is somehow nicer:
const num = _.get(foo, 'bar.baz', 1337);
VS:
const num = typeof foo?.bar?.baz !== 'undefined' ? foo?.bar?.baz : 1337;
Generally you would do `foo?.bar?.baz || 1337`, unless `baz` was expected to sometimes have a significant falsy value.
I've talked about an idea to introduce `??` (from C#, null coalescing operator), which provides default values for undefined case only (not all of falsy), with which `foo?.bar?.baz ?? 1337` would be equivalent to the top line in your code.