File size: 336 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// regression test for nullish coalescing syntax
// https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#nullish-coalescing

export function testNullishCoalescing() {
  const someFunc = () => 'some string';
  const someFalse = false;
  const shouldBeTrue = !(someFalse ?? someFunc());
  return shouldBeTrue;
}