|
|
|
|
|
by radq
1099 days ago
|
|
I have some reservations about the specification - it looks like there are a lot of caveats to how it can be used. For example, it's allowed in for and for-of loops, but not in for-in loops. Also looks like destructuring will not be allowed. using res = getResource();
const { x, y } = res; // ok
using { x, y } = getResource(); // error
|
|