5 ms·
function* operation() { //@ts-expect-error `string` is not assignable to `number`! let count = yield* createString(); return count.toExponenti
by chalsprhebaodu 3y ago
function* operation() {
//@ts-expect-error `string` is not assignable to `number`!
let count = yield* createString();
return count.toExponential()
}
Is this a typo? How does the compiler know that count should be a number?