Turn multi-dimensional array into a one-dimensional flattened array

suggest change
[1, 2, [[3, 4], [5]], 6].flatten  # => [1, 2, 3, 4, 5, 6]

If you have a multi-dimensional array and you need to make it a simple (i.e. one-dimensional) array, you can use the #flatten method.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents