array destructure rest

const arr = ['a', 'b', 'c'];

let [a,...arrayRest] = arr;
console.log(a, arrayRest);

//Result:
//a ['b', 'c']