Nodejs Array Map map(f)

Here you can find the source of map(f)

Method Source Code

Array.prototype.map = function(f){
  var newArray = [];
  var i;/*from   w  w  w.  ja va  2s  .c o m*/
  //Traversing the array
  //this refers to the array instance
  
  for( i = 0; i<this.length; i++){
    newArray.push(f(this[i],i,this));
  }
  
  return newArray;
}

Related

  1. map(callback, thisArg)
    Array.prototype.map = function(callback, thisArg){
      var newArr = [];
      if(callback && Object.prototype.toString.call(callback) != "[object Function]"){
        throw new TypeError('callback is not a function');
      for(var i = 0, len = this.length; i < len; i++){
        newArr[i] = callback.call(thisArg, this[i], i , this);
      };
      return newArr;
    ...
    
  2. map(callback, thisArg)
    Array.prototype.map = Array.prototype.map || (function(callback, thisArg) {
      var T, A, k;
      var O = Object(this);
      var len = O.length >>> 0;
      if (arguments.length > 1) T = thisArg;
      A = new Array(len);
      k = 0;
      while (k < len) {
        var kValue, mappedValue;
    ...
    
  3. map(callbackfn, thisArg)
    Array.prototype.map = function (callbackfn, thisArg) {
      var res = [];
      for (var i=0; i<this.length; i++)
        res[i] = Kernel.Reflect.apply(callbackfn, thisArg, [this[i], i, this]);
      return res;
    
  4. map(cb)
    Array.prototype.map = function(cb){
        var arr = Object(this);
        var res = []
        for(var i=0;i<arr.length;i++){
            res[i] = cb.call(arr[i], i);
        return res;
    
  5. map(command)
    Array.prototype.map = function(command){
      var outArray = [];
      this.each(function(x){
        outArray.push(command(x));
      });
      return outArray;
    };
    
  6. 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;
    };
    ...
    
  7. 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;
    };
    
  8. map(f)
    Array.prototype.map = Array.prototype.map || function (f) {
      var result = [];
      this.each(function (element) {
        result.push(f(element, result.length));
      });
      return result;
    };
    
  9. map(fn)
    Array.prototype.map = function(fn) {
      let temp = []
      temp.push(fn(this[0], 0, this))
      this.reduce((preValue, value, index, array) => {
        temp.push(fn(value, index, array))
        return value
      })
      return temp