I need to safely get a reference to an object like this:
var length = Obj1.Obj2.Obj3.Obj4.Length;
I know I can use bunch of if conditions or ternary operators, to get null when either of Obj1..4 are null.
Is there a cleaner way in TS or JS to safely handle nulls?
In C#, I can use something like Obj1?.Obj2?.Obj3?.Obj4?.Length but I wonder how to do similar in TS or JS