We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
http://www.typescriptlang.org/play/index.html?target=1&ts=3.8.0-dev.20191105&ssl=7&ssc=1&pln=8&pc=1#code/JYOwLgpgTgZghgYwgAgPICMBWyDeBYAKGWOTgH4AuXQk25dS5AZzClAHMaSBfQ3gwgBsIYZAHssVDNgC81IiThV8CuvSoAiOOgQauxfv0IIxIJmOEA6QWPYAKCZkvlL6AISWmAB0HAwdjXQNAEpgoA
interface Obj { a?: { b?: string } } let obj: Obj = { a: { b: "abc" } } console.log(obj.a?.b!.split("b")) ``