array destructuring syntax

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

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

//Result:
//a,b,c