// Map Type of key : One Map The bond of can be any value , Include function 、 Object or any basic type .
// Object Type of key : One Object The key of must be a String or Symbol.
var map = new Map();
map.set(function test() {}, 123);
map.set('name', ' Zhang San ');
console.log(map);// {ƒ => 123, 'name' => ' Zhang San '}.“=>” Called Mapping
var obj = {
age: 18,
'address': 'js',
}
console.log(obj)// {age: 18, address: 'js'}. Object key:valueReference resources MDN:https://developer.mozilla.org...


![[technology development-23]: application of DSP in future converged networks](/img/2e/f39543a18a8f58b1d341ce72cc4427.png)
![[understanding of opportunity -36]: Guiguzi - flying clamp chapter - prevention against killing and bait](/img/c6/9aee30cb935b203c7c62b12c822085.jpg)




