Nodejs Array Map map(fn)

Here you can find the source of map(fn)

Method Source Code

Array.prototype.map = function(fn) {
  let temp = []//from   ww w .j a  v  a2  s  .c  o  m
  temp.push(fn(this[0], 0, this))
  this.reduce((preValue, value, index, array) => {
    temp.push(fn(value, index, array))
    return value
  })
  return temp
}

Related

  1. map(command)
    Array.prototype.map = function(command){
      var outArray = [];
      this.each(function(x){
        outArray.push(command(x));
      });
      return outArray;
    };
    
  2. map(f)
    Array.prototype.map = function(f){
      var newArray = [];
      var i;
      for( i = 0; i<this.length; i++){
        newArray.push(f(this[i],i,this));
      return newArray;
    
  3. map(f)
    var arr = [0,1,2,3,4];
    var triple = function(x) { return x * 3; };
    Array.prototype.map = function(f) {
        var newArr = [];
        for (var i = 0; i < this.length; i++) {
            newArr.push(f(this[i]));
        return newArr;
    };
    ...
    
  4. map(f)
    Array.prototype.map = function(f) {
        var i;
        var mapped = [];
        for (i = 0; i < this.length; i++) {
      mapped.push(f(this[i]));
        return mapped;
    };
    
  5. map(f)
    Array.prototype.map = Array.prototype.map || function (f) {
      var result = [];
      this.each(function (element) {
        result.push(f(element, result.length));
      });
      return result;
    };
    
  6. map(fn)
    Array.prototype.map = function(fn) 
        var r = [];
        for (var i=0;i<this.length;i++)
            r.push(fn(this[i]));
        return r; 
    
  7. map(fn, context)
    Array.prototype.map = function(fn, context) {
      if (typeof fn != "function") {
        throw new TypeError(fn + " is not a function");
      if (typeof context === 'undefined') {
        context = this;
      var result = new Array(this.length);
      for (var i = 0, l = this.length; i < l; ++i) {
    ...
    
  8. map(fn,thisObj)
    if(!Array.prototype.map) {
    Array.prototype.map = function(fn,thisObj)
      var scope = thisObj || window;
      var a = [];
      for(var i=0, j=this.length; i < j; ++i) {
        a.push(fn.call(scope,this[i],i,this));
      return a;
    ...
    
  9. map(from, to)
    Array.prototype.map = function(from, to) {
        var newArray = [];
        for (var i = 0; i < this.length; i++) {
            if (this[i][from] != undefined && this[i][to] != undefined) {
                newArray[this[i][from]] = this[i][to];
        return newArray;
    };
    ...