array destructuring more Post author By Amer Sikira Post date October 15, 2021 const arr = ['a', 'b', 'c'] let [a,b,c,d] = arr; console.log(a,b,c,d); //Result: //a b c undefined ← array destructuring numbers → array destructuring less