Here you can find the source of flatten()
Array.prototype.flatten = function() { return this.reduce(function(res, el) { if(el.constructor == Array) { el.forEach(function(sub_el) { res.push(sub_el);/* w w w . j a v a 2 s. c o m*/ }) } else { res.push(el); } return res; }, []); }
Array.prototype.flatten = function() { var resultArray = []; innerFlatten(this); function innerFlatten(arr) { arr.forEach(function(el) { if(Array.isArray(el)) { innerFlatten(el); } else { resultArray.push(el); ...
var exchanges = [ [ {symbol: "JNJ", price: 2030.00, volume:48984}, {symbol: "PWC", price: 4340.00, volume:15985} ], [ {symbol: "CISC", price: 4563.00, volume:874651}, {symbol: "KROG", price: 712.00, volume:8949} ] ...
Array.prototype.flatten = function(){ var result = []; this.forEach(function(x) { result = result.concat(x); }); return result; };
Array.prototype.flatten = function () { return this.reduce((p,c) => p.concat(c), [])
Array.prototype.flatten = function () { function flattenArrayOfArrays(array, result) { if (!result) { result = []; for (var i = 0; i < array.length; i++) { if (Array.isArray(array[i])) { flattenArrayOfArrays(array[i], result); } else { ...
Array.prototype.flatten = function () { var toReturn = []; for (var i = 0, len = this.length; i < len; i++) { if (this[i] instanceof Array) { toReturn = toReturn.concat(this[i].flatten()); } else { toReturn.push(this[i]); return toReturn; };
Array.prototype.flatten = function() { return this.reduce(function(a,b) { return a.concat(b) }, [])
Array.prototype.flatten = function(){ var flattenArray = []; for (var el in this) { var currElement = this[el]; if (Object.prototype.toString.call(currElement) === '[object Array]' ) { for (var i in currElement) { flattenArray.push(currElement[i]); } else { ...
var slice = Array.prototype.slice; Array.prototype.flatten = function () { var obj, result = []; for (var i = 0, l = this.length; i < l; ++i ) { obj = this[ i ]; if ( Array.isArray( obj ) ) { result = result.concat( obj.flatten() ); } else { result[ result.length ] = obj; ...