xxxxxxxxxx
// assign a space to values you want to ignore
// ignore first 2 values
const [ , ,third,fourth] = [1,2,3,4]
console.log(third, fourth) // logs '3 4'
// ignore second and fourth
const [first, ,third, ] = [1, 2, 3, 4]
console.log(first, third) // logs '1 3'