Array Flatten in JavaScript
What are nested arrays?
Imagine a box inside a box inside another box. That's what a nested array is an array that contains other arrays as its elements.
const nested = [1, [2, 3, 4], [5, [6, 7, 8]]];
saurabh-ravte.hashnode.dev4 min read