Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
// Basic array destructuring const colors = ['red', 'green', 'blue']; const [first, second, third] = colors; console.log(first, second, third); // Skipping elements const [primary, , tertiary] = colors; console.log(primary, tertiary);
red green blue red blue