📚 Reference
arr.flat()
arr.flat(depth) // depth: 깊이 === 숫자
배열명.flat()
배열명.flat(숫자)
let matrix = [1, 2, 3, [1, 2, 3, [10, 20]]];
// [1, 2, 3, [1, 2, 3, 10, 20]]
console.log(matrix.flat());
// [1, 2, 3, 1, 2, 3, 10, 20]
console.log(matrix.flat(2));