Optional Chaining Operator in Typescript
问题 In javascript, Optional Chaining Operator is supported by the babel plugin. But I can't find how to do this in Typescript. Any idea? 回答1: At time of writing, TypeScript does not support the optional chaining operator. See discussion on the TypeScript issue tracker: https://github.com/Microsoft/TypeScript/issues/16 As a warning, the semantics of this operator are still very much in flux, which is why TypeScript hasn't added it yet. Code written today against the Babel plugin may change