最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

object - Different ways for adding keyvalue pair to a Map in JavaScript - Stack Overflow

programmeradmin1浏览0评论

According to MDN set Method for Map, the only way for adding key/value pair to a map in javascript is a set method. I am wondering what the behavior of a map is when we add a key/value pair with a square bracket like below;

const testMap = new Map();
testMap.set( 1,"firstValue" );
testMap[2] = "secondValue";
console.log( testMap );
console.log( testMap[ 2 ] );
console.log( testMap[ '2' ] );

It seems that we can have both a map and object together! Can somebody explain this to me? I know that Map is a kind of object but this behavior can cause a lot of bugs. Is there any way to prevent this? By the way, if you add a key/value pair with square brackets, then you cannot use get method to retrieve it.

According to MDN set Method for Map, the only way for adding key/value pair to a map in javascript is a set method. I am wondering what the behavior of a map is when we add a key/value pair with a square bracket like below;

const testMap = new Map();
testMap.set( 1,"firstValue" );
testMap[2] = "secondValue";
console.log( testMap );
console.log( testMap[ 2 ] );
console.log( testMap[ '2' ] );

It seems that we can have both a map and object together! Can somebody explain this to me? I know that Map is a kind of object but this behavior can cause a lot of bugs. Is there any way to prevent this? By the way, if you add a key/value pair with square brackets, then you cannot use get method to retrieve it.

Share Improve this question edited Sep 5, 2018 at 12:05 Hyyan Abo Fakher 3,5273 gold badges24 silver badges36 bronze badges asked Sep 5, 2018 at 12:00 RezaReza 3,9695 gold badges40 silver badges60 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

This is a special situation.

Maps are a special case that contain an entriesarray internally. When you use the array notation, your setting key/value pairs outside this entries array.

When you use the set or get method you are actually using the internal entries array used by the map code.

The example above, essentially creates a Map object that is using the internal entries array. However, setting the second object using the array notation, means you are adding another entry/property but not in the Entries array.

Also, these values are pletely different. Do note though that these two data structures don't collide. So testMap.get(2) is not the same variable as testMap[2].

No your example doesn't work as expected, when you use brackets, you are setting a property on the testMap object not setting an entry. You can confirm that by iterating over your map using the forEach method for example.

const testMap = new Map();
testMap.set(1, "firstValue");
testMap[2] = "secondValue";

testMap.forEach(x => console.log(x));

As you can see, there is no secondValue on the console, that is, there is no mapped entry with that value. Therefore, it wasn't added to the map what so ever.

And definetly, testMap.set(1, "firstValue"); is not equivalent to testMap[1] = "firstValue"; the only reason your are allowed to do that is because javascript permit you to add property to living objects but it is not added to the map entries.

Ref.: MDN Map

发布评论

评论列表(0)

  1. 暂无评论