File size: 330 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 | // regression test for optional chaining syntax
// https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#optional-chaining
export function testOptionalChaining() {
const someObj: { someOptionalString?: string } = {};
const shouldBeTrue = someObj?.someOptionalString || true;
return shouldBeTrue;
}
|