Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: object/array destructuring assignment. #397

Open
drsm opened this issue Jun 17, 2021 · 0 comments
Open

core: object/array destructuring assignment. #397

drsm opened this issue Jun 17, 2021 · 0 comments

Comments

@drsm
Copy link
Contributor

drsm commented Jun 17, 2021

> var [a, b, ...c] = [1,2,3,4]
undefined
> [a,b,c]
[ 1, 2, [ 3, 4 ] ]
> var { 1:x, 2:y, length } = [1,2,3,4]
undefined
> [x,y, length]
[ 2, 3, 4 ]
> var { x, ...xs } = { x: 2, x1: 1, x0: 0}
undefined
> [x, xs]
[ 2, { x1: 1, x0: 0 } ]

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants