Nodejs Array Flatten flatten()

Here you can find the source of flatten()

Method Source Code

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;
  }, []);
}

Related

  1. flatten()
    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);
    ...
    
  2. flatten()
    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}
      ]
    ...
    
  3. flatten()
    Array.prototype.flatten = function(){
      var result = [];
      this.forEach(function(x) {
        result = result.concat(x);
      });
      return result;
    };
    
  4. flatten()
    Array.prototype.flatten = function () {
        return this.reduce((p,c) => p.concat(c), [])
    
  5. flatten()
    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 {
    ...
    
  6. flatten()
    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;
    };
    
  7. flatten()
    Array.prototype.flatten = function() {
      return this.reduce(function(a,b) {
        return a.concat(b)
      }, [])
    
  8. flatten()
    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 {
    ...
    
  9. flatten()
    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;
    ...