關於map

  map() 方法返回一個由原數組中的每一個元素調用一個指定方法後的返回值組成的新數組。
這裏的map不是「地圖」的意思,而是指「映射」。[].map(); 基本用法跟forEach方法相似:web

function square(i){  return i*i; }數組

console.og(["1","2","3"].map(square)); //輸出 ["1","4","9"]瀏覽器

map() 方法返回一個新數組,數組中的元素爲原始數組元素調用函數處理後的值。函數

array.map(function(currentValue,index,arr), thisValue)

map() 方法按照原始數組元素順序依次處理元素。學習

注意: map() 不會對空數組進行檢測。this

注意: map() 不會改變原始數組。spa

在實際使用的時候,咱們能夠利用map方法方便得到對象數組中的特定屬性值們。例以下面這個例子(以後的兼容demo也是該例子):prototype

var users = [
  {name: "張含韻", "email": "zhang@email.com"},
  {name: "江一燕",   "email": "jiang@email.com"},
  {name: "李小璐",  "email": "li@email.com"}
];

var emails = users.map(function (user) { return user.email; });

console.log(emails.join(", ")); // zhang@email.com, jiang@email.com, li@email.com

Array.prototype擴展能夠讓IE6-IE8瀏覽器也支持map方法:code

if (typeof Array.prototype.map != "function") {
  Array.prototype.map = function (fn, context) {
    var arr = [];
    if (typeof fn === "function") {
      for (var k = 0, length = this.length; k < length; k++) {      
         arr.push(fn.call(context, this[k], k, this));
      }
    }
    return arr;
  };
}
文章乃參考、轉載其餘博客所得,僅供本身學習做筆記使用!!!

 參考:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/maporm

相關文章
相關標籤/搜索