You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vara: boolean|number|string;if(typeofa!=='boolean'){// a is narrowed to "number | string"for(vari=0;i<1;i++){for(varj=0;j<1;j++){}if(typeofa==='string'){// a is narrowed to "string'for(varj=0;j<1;j++){a.length;// Error: Property 'length' does not exist on type 'never'.}}}}
Removing any of the three loops, or the outer type guard, makes the problem disappear.
Removing any of the three loops, or the outer type guard, makes the problem disappear.