TypeScript Version: 3.7.0-dev.20190907
Search Terms: possibly undefined is:open
Code
functionfoo(value?: string){if(value===undefined){value="hello";}console.log(value.toUpperCase());// OKsetTimeout(()=>value.toUpperCase(),1);// TS2532}Expected behavior: Successful compilation.
Actual behavior: Compilation failing with error TS2532: Object is possibly 'undefined'..
Playground Link:www.typescriptlang.org/play/#code/…
Related Issues:#31060
TypeScript Version: 3.7.0-dev.20190907
Search Terms: possibly undefined is:open
Code
Expected behavior: Successful compilation.
Actual behavior: Compilation failing with
error TS2532: Object is possibly 'undefined'..Playground Link:www.typescriptlang.org/play/#code/…
Related Issues:#31060