Is there a javascript equivalent to unpack sequences like in python?

iterable-unpacking, javascript, python

Solution

[a, b] = [1, 2]

Update:

Browser compatibility matrix:

- Firefox: all versions

- Opera: 9.x only

- Chrome: 49 and higher

- MSIE: no

- EdgeHTML: 14 (Browser version 31, released Feb. 2016)

- Safari: 7.1 (8 for Safari Mobile)

Problem

Is there a javascript equivalent to unpack sequences like in python? ``` a, b = (1, 2) ```

Original source