[JS] JavaScript Map
Map @ MDN - JavaScript Reference
Map
物件是簡單的 key-value 配對,物件(Object)
和 Map
很相似,但是有以下幾點差別:
- Map 裡面的 key 是唯一的,如果
set
到重複的 key,則舊的 value 會被覆蓋。 Map
中的keys
會根據被添加資料的時間而有順序性,但Object
沒有順序性。- Object 的鍵(key)只能是
字串(Strings)
或Symbols
,而Map
的鍵可以是任何值,包含物件、函式或原始型別(primitive type)。 - 若要取得
Map
的大小非常容易,只需要取得 size 屬性即可;而 Object 的大小必須手動決定。 - 當需要經常增添刪減屬性時,使用
Map
的效能會比Object
來得好。
ES6 中如果希望「陣列(Array)」的元素不會重複,可以使用
Set
;如果是希望物件(Object)的鍵不會重複,則可以使用Map
。
使用
語法
// 建立 Map
let myMap = new Map(); // 建立空的 Map
let myMap = new Map([
[1, 'one'],
[2, 'two'],
]); // 建立 Map 時直接代入內容
let keyString = 'a string',
keyObj = {},
keyFunc = function () {};
// 透過 .set(key, value) 來在 Map 中添加屬性
myMap.set(keyString, 'value associated with string');
myMap.set(keyObj, 'value associated with object');
myMap.set(keyFunc, 'value associated with function');
// 方法
myMap.has(keyString); // true,透過 .has 判斷該 Map 中是否有某一屬性
myMap.size; // 3,透過 .size 來取得 Map 內的屬性數目
myMap.get(keyString); // 使用 .get(key) 可取得屬性的內容
myMap.delete(keyString); // 刪除 Map 中的某個屬性,成功刪除回傳 true,否則 false
myMap.clear(); // 清空整個 Map
Map 的疊代
myMap.keys(); // 取得 Map 的所有 keys,回傳 Iterable 的物件
myMap.values(); // 取得 Map 的所有 values,回傳 Iterable 的物件
myMap.entires(); // 取得 Map 的所有內容,回傳 Iterable 的物件
// 透過 for...of 可以列舉所有 Map 中的內容
for (let [key, value] of myMap) {
console.log(`The value of ${key} in Map is ${value}`);
}
for (let [key, value] of myMap.entries()) {
console.log(key + ' = ' + value);
}
myMap.forEach(function (value, key) {
console.log(key + ' = ' + value);
});
// 取得 Map 的 key
for (let key of myMap.keys()) {
console.log(key);
}
// 取得 Map 的所有 values
for (let value of myMap.values()) {
console.log(value);
}
Map 的複製(Clone)
let students = {
Aaron: { age: '29', country: 'Taiwan' },
Jack: { age: '26', country: 'USA' },
Johnson: { age: '32', country: 'Korea' },
};
const studentMap = new Map(Object.entries(students));
const cloneMap = new Map(studentMap);
cloneMap.get('Aaron'); // { age: '29', country: 'Taiwan' }
studentMap === cloneMap; // false. Useful for shallow comparison
Map 的合併(Merge)
var first = new Map([
[1, 'one'],
[2, 'two'],
[3, 'three'],
]);
var second = new Map([
[1, 'uno'],
[2, 'dos'],
]);
// 合併兩個 Map 時,後面的 Key 會覆蓋調前面的
// 透過 Spread operator 可以將 Map 轉換成陣列
var merged = new Map([...first, ...second]);
console.log(merged.get(1)); // uno
console.log(merged.get(2)); // dos
console.log(merged.get(3)); // three
Map 也可以和陣列相合併
// Merge maps with an array. The last repeated key wins.
var merged = new Map([...first, ...second, [1, 'foo']]);
console.log(merged.get(1)); // foo
console.log(merged.get(2)); // dos
console.log(merged.get(3)); // three
使用範例
使用 Object.entries
來將資料變成 iterable 代入 new Map
的參數中
let students = {
Aaron: { age: '29', country: 'Taiwan' },
Jack: { age: '26', country: 'USA' },
Johnson: { age: '32', country: 'Korea' },
};
const studentMap = new Map(Object.entries(students));
// 透過 for...of 可以列舉所有 Map 中的內容
for (let [key, value] of studentMap) {
const { age, country } = value;
console.log(`${key} is ${age} year's old, and lives in ${country}`);
}
// 檢驗某個鍵是否存在
studentMap.has('Aaron');
console.log(studentMap.get('Jack')); // 取得 Map 的屬性內容,Object { age: '26', country: 'USA' }
studentMap.delete('Johnson'); // 刪除 Map 中的某個屬性
studentMap.clear(); // 清空整個 Map
console.log(studentMap.size); // 看看 Map 中有多少內容
補充
將 Map 轉成 Array
const theMap = new Map([
[1, 'one'],
[2, 'two'],
[3, 'three'],
]);
const theArray = [...theMap.entries()]; // [[1, 'one'], [2, 'two'], [3, 'three']]
const arrayOfMapKeys = [...theMap.keys()]; // [1, 2, 3]
const arrayOfMapValues = [...theMap.values()]; // ["one", "two", "three"]
使用 Map 製作 HashTable
// Credits: Engine Lin (https://medium.com/@linengine)
// object 也可以使用
const arr = ['apple', 'apple', 'banana', 'banana', 'cat', 'dog', 'fat', 'fat', 'fat', 'fat'];
const hashTable = new Map();
arr.forEach((item) => {
if (hashTable.has(item)) {
hashTable.set(item, hashTable.get(item) + 1);
} else {
hashTable.set(item, 1);
}
});
// Map { 'apple' => 2, 'banana' => 2, 'cat' => 1, 'dog' => 1, 'fat' => 4 }
console.log(hashTable);