Multiple assignment in javascript? What does [a,b,c] = [1, 2, 3]; mean?

This is a feature called destructuring assignment, which was added in JavaScript 1.7 and ECMAScript 6. It is not a part of ECMAScript 5: What is cross browser support for JavaScript 1.7’s new features? Specifically array comprehensions and the “let” statement

Leave a Comment