flat배열
중첩 배열을 평탄화합니다.
문법
arr.flat(depth?)예제
아래 값을 입력하면 예제에 즉시 반영됩니다.
const→nested→console→flat→const nested = [1, [2, 3], [4, [5, 6]]];
console.log(nested.flat()); // [1, 2, 3, 4, [5, 6]]
console.log(nested.flat(2)); // [1, 2, 3, 4, 5, 6]