|
|
|
|
|
by chalsprhebaodu
904 days 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? |
|