Flattens array a single level deep.
array
The array to flatten.
Returns the new flattened array.
0.1.0
flatMap, flatMapDeep, flatMapDepth, flattenDeep, flattenDepth
flatten([1, [2, [3, [4]], 5]])// => [1, 2, [3, [4]], 5] Copy
flatten([1, [2, [3, [4]], 5]])// => [1, 2, [3, [4]], 5]
Flattens
array
a single level deep.