frontend-challenges icon indicating copy to clipboard operation
frontend-challenges copied to clipboard

18 - flatten

Open marks0351 opened this issue 1 year ago • 0 comments

index.js

export function flatten(arr, depth = 1) {
  // write your logic here
  return arr.flat(depth)
}

marks0351 avatar Feb 29 '24 12:02 marks0351