How to simply flatten array in jQuery? I have: [1, 2, [3, 4], [5, 6], 7] And want: [1, 2, 3, 4, 5, 6, 7]
|
You can use jQuery.map, which is the way to go if you have the jQuery Library already loaded.
Returns
|
|||||
|
|
Use the power of JavaScript:
|
|||||||||||||||||||
|
The flatten function should do it, and this doesn't require jQuery. Just copy all of this into Firebug and run it. |
|||||||||||
|
|
You can use
|
|||
|
|
|
Here's how you could use jquery to flatten deeply nested arrays:
Returns:
Takes advantage of jQuery.map as well as jQuery.isArray. |
||||
|
|
|
Old question, I know, but... I found this works, and is fast:
|
|||
|
|
|
To recursively flatten an array you can use the native Array.reduce function. The is no need to use jQuery for that.
Executing
returns
|
|||
|
|