| ▲ | sheept 2 hours ago | |
I agree, it's always been unsettling to see any[] on hover, even though it gets typed in the end. I think one reason might be to allow the type to be refined differently in different code paths. For example:
In each branch, arr is typed as number[] and string[], respectively, and x's return type is number[] | string[]. If it decided to retroactively infer the type of arr at declaration, then I'd imagine x's return type would be the less specific (number | string)[]. | ||