|
|
|
|
|
by bakkoting
1099 days ago
|
|
> not in for-in loops What would that even mean? The binding in a `for-in` can only ever hold a string, which can't be disposable. With a `for` or `for-of` the binding can hold an object, which is something you could dispose of. |
|