Array Flatten in JavaScript
what are nested arrays
a nested array is simply an array inside another array
eg
let arr = [1, 2, [3, 4], 5]
we can go more deep insode of that
let arr = [1, [2, [3, [4]]]];
This is called deeply ne
dushyantxcode.hashnode.dev4 min read