Array Flatten in JavaScript
What nested arrays are
A nested array is an array inside another array.
👉 In simple words:
An array that contains other arrays as its elements.
Example
let arr = [1, 2, [3, 4], 5];
Here:
1, 2, 5
hitakshi120.hashnode.dev8 min read