array of array

let t = [
  ['aaa'],
  ['bbb'],
  ['ccc']];


console.log( t.reduce( (p, n) => p.concat( n ) ));