Array Flatten in JavaScript
What nested arrays are
Array inside array is called nested array.
Why flattening arrays is useful
One of the usecase is that we want all users post in single array to display it.
const users = [
{ n
javascript-kartik.hashnode.dev1 min read