Files
codeql/javascript/ql/test/library-tests/Flow/nullish-coalescing-op.ts
2019-11-04 07:54:38 +00:00

4 lines
41 B
TypeScript

function test(x) {
let y = x ?? 0.5;
}