16 Nov 2020   javascript


If you donโ€™t need an element in an array while destructuring it, simply omit a name:

const [, two, three] = [1, 2, 3];
console.log(two, three)
=> 2 3
๐Ÿ„