d3.merge(arrays)
Merges the specified arrays into a single array. This method is similar to the built-in array concat method; the only difference is that it is more convenient when you have an array of arrays.
1 | d3.merge([[1], [2, 3]]); // returns [1, 2, 3] |
Please login to continue.