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