Does Typescript currently (or are there plans to) support the safe navigation operator of ?.
ie:
var thing = foo?.bar
// same as:
var thing = (foo) ? foo.bar : null;
Also, is there a more common name for this operator (it's incedibly hard to google for).
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…