Loading...
const colors = ["red", "green", "blue"];
const [first, second, third] = colors;
const [primary, , tertiary] = colors;
console.log(first);
console.log(second);
console.log(primary, tertiary);
empty
No output yet.