Originally posted by Sheetal Nandi (@sheetalkamat) in #522 (comment)
Nathan Hardy (@nhardy) optional chaining is supported. If you have a sample that doesnt work please open another issue with it to track it separately.
Turns out optional chain doesn't work. 🙂
declare let foo: Foo | undefined;
foo && foo.bar && foo.bar.baz;
interface Foo {
bar?: {
baz?: string;
}
}

Originally posted by Sheetal Nandi (@sheetalkamat) in #522 (comment)
Turns out optional chain doesn't work. 🙂