1// Rest operator on Arrays;
2// It's usually shown as ...rest
3// but you can name this what you like
4// Think of it as "get the ...rest of the array"
5const [q, r, ...callThisAnythingYouWant] = [1, 2, 3, 4, 5, 6, 7, 8];
6
7console.log(q, r); // 1 2
8console.log(callThisAnythingYouWant); // [ 3, 4, 5, 6, 7, 8 ]
9