Here you can find the source of concatAll()
/**//from www .ja v a2 s .co m * @description concatAll() aka flattenDeep(), based on http://reactivex.io/learnrx/ * @return {array} concatenated array. */ Array.prototype.concatAll = function () { let results = []; this.forEach(function (subArray) { results.push.apply(results, subArray); }); return results; };
Array.prototype.concatAll = function() { var results = []; this.forEach(function(subArray) { subArray.forEach(function(element) { results.push(element); }); }); return results; }; ...
Array.prototype.concatAll = function() { let result = []; this.forEach(items => result = result.concat(items) ); return result;
Array.prototype.concatAll = function() { let results = []; for (let i = 0; i < this.length; i++) { results.push.apply(results, this[i]); return results; };
Array.prototype.concatAll = function() { return this.reduce((results, current) => { if(Array.isArray(current)) { return results.concat(current).concatAll(); } else { return (results.push(current), results); }, []); }; ...
Array.prototype.concatAll = function() { var results = []; this.forEach(function(subArray) { if (Array.isArray(subArray)) { subArray.forEach(function(item) { results.push(item); }); }); ...
Array.prototype.concatAll = function() { var results = []; this.forEach(function(subArray) { subArray.forEach((i) => { results.push(i); }); }); return results; }; ...
let data = [ [ {name: "IBM", price:12}, {name: "Apple", price:120} ], [ {name: "Google", price:100}, {name: "MorganStanley", price:30} ] ...
Array.prototype.concatAll = function() { var results = []; this.forEach(function(subArray) { subArray.forEach(function(item){ results.push(item) }) }); return results; }; ...
Array.prototype.concatAll = function() { var results = []; this.forEach(function(subArray) { subArray.forEach(function(element){ results.push(element); }); }); return results; }; ...