search
HomeWeb Front-endJS TutorialA brief discussion on Map, WeakMap, Set and WeakSet in JavaScript

A brief discussion on Map, WeakMap, Set and WeakSet in JavaScript

I would guess that over 70% of JavaScript developers only use objects to collect and maintain data in their projects. Well, it's true, new collection objects like Map and Set are underutilized even when they came out in 2015.

So, today, I will discuss the amazing new features from 2015 - Map, Set, WeakMap and WeakSet .

Before you read

  • This article is not meant to tell you to only use them. But I've seen some candidates use one of these on coding exams, and I like using them in certain situations. It's up to you to decide when to use them in your project.
  • You should know what an iterable is to better understand my discussion.

Objects

We should first discuss how to use objects.

Okay, I believe more than 90% of people already know this part, because you clicked on this article to learn about the new collection object, but for beginners in JavaScript, let’s keep it simple Say them.

const algorithm = { site: "leetcode" };
console.log(algorithm.site); // leetcode

for (const key in algorithm) {
  console.log(key, algorithm[key]);
}

// site leetcode
delete algorithm.site;
console.log(algorithm.site); // undefined

So I made an algorithm object, its key and value are a string type value, and I called it by using the . keyword value.

In addition, for-in loops are also very suitable for looping in objects. You can access the value corresponding to its key using the [] keyword. But for-of loops cannot be used because objects are not iterable.

The properties of an object can be deleted using the delete keyword. In this way, you can completely get rid of the properties of the object. You should be careful not to confuse it with this method.

const algorithm = { site: "leetcode" };
// Property is not removed!!
algorithm.site = undefined;
// Property is removed!!
delete algorithm.site;

algorithm.site = undefined just assigns the new value to site.

Okay, we've quickly discussed a few things about objects:

  • How to add properties
  • How to iterate over objects
  • How to remove properties

Map

Map is a new collection object in JavaScript that functions like an object. However, there are some major differences compared to regular objects.

First, let's look at a simple example of creating a Map object.

How to add attributes

const map = new Map();
// Map(0) {}

Map There is no need to create anything, but the way to add data is slightly different.

map.set('name', 'john');
// Map(1) {"name" => "john"}

Map has a special way to add properties in it called set. It takes two parameters: the key is the first parameter and the value is the second parameter.

map.set('phone', 'iPhone');
// Map(2) {"name" => "john", "phone" => "iPhone"}
map.set('phone', 'iPhone');
// Map(2) {"name" => "john", "phone" => "iPhone"}

However, it does not allow you to add existing data in it. If a value corresponding to the new data's key already exists in the Map object, the new data will not be added.

map.set('phone', 'Galaxy');
// Map(2) {"name" => "john", "phone" => "Galaxy"}

But you can overwrite existing data with other values.

How to iterate over an object

Map is an iterable object, which means it can be mapped using a for-of statement.

for (const item of map) {
  console.dir(item);
}
// Array(2) ["name", "john"]
// Array(2) ["phone", "Galaxy"]

One thing to remember is that Map provides data in the form of an array, you should destructure the array or access each index to get the key or value.

To get only the keys or values, there are some methods available to you.

map.keys();
// MapIterator {"name", "phone"}
map.values();
// MapIterator {"john", "Galaxy"}
map.entries();
// MapIterator {"name" => "john", "phone" => "Galaxy"}

You can even use the spread operator (...) to get the entire data of the Map, because the spread operator also works behind the scenes with iterable objects.

const simpleSpreadedMap = [...map];
// [Array(2), Array(2)]

How to delete attributes

Deleting data from a Map object is also easy, all you need to do is call delete.

map.delete('phone');
// true
map.delete('fake');
// false

delete Returns a Boolean value indicating whether the delete function successfully deleted the data. If so, returns true, otherwise returns false.

WeakMap

WeakMap originated from Map, so they are very similar to each other. However, WeakMap is very different.

Where did the name WeakMap come from? Well, it's because its connection or relationship with the data object pointed to by its reference link is not as strong as that of Map, so it is weak.

So, what does this mean?

Difference 1: key must be an object

const John = { name: 'John' };
const weakMap = new WeakMap();
weakMap.set(John, 'student');
// WeakMap {{...} => "student"}
weakMap.set('john', 'student');
// Uncaught TypeError: Invalid value used as weak map key

You can pass any value into the Map object as a key, but WeakMap is different, it only accepts an object as a key, otherwise, it will return a mistake.

Difference 2: Not all methods in Map are supported

The methods that can use WeakMap are as follows.

  • delete
  • get
  • has
  • set

The biggest difference in this topic is that WeakMap does not support iteration Object methods. But why? This is described below.

Difference 3: When GC cleans up references, the data will be deleted

Compared with Map, this is the biggest difference.

let John = { major: "math" };

const map = new Map();
const weakMap = new WeakMap();

map.set(John, 'John');
weakMap.set(John, 'John');

John = null;
/* John 被垃圾收集 */

When the John object is garbage collected, the Map object will maintain the reference link, while the WeakMap object will lose the link. So when you use WeakMap, you should consider this feature.

Set

Set is also very similar to Map, but Set is more useful for a single value.

How to add attributes

const set = new Set();

set.add(1);
set.add('john');
set.add(BigInt(10));
// Set(4) {1, "john", 10n}

Like Map, Set also prevents us from adding the same value.

set.add(5);
// Set(1) {5}

set.add(5);
// Set(1) {5}

如何遍历对象

由于Set是一个可迭代的对象,因此可以使用 for-offorEach 语句。

for (const val of set) {
  console.dir(val);
}
// 1
// 'John'
// 10n
// 5

set.forEach(val => console.dir(val));
// 1
// 'John'
// 10n
// 5

如何删除属性

这一部分和 Map 的删除完全一样。如果数据被成功删除,它返回 true,否则返回 false

set.delete(5); 
// true

set.delete(function(){});
// false;

如果你不想将相同的值添加到数组表单中,则Set可能会非常有用。

/* With Set */
const set = new Set();
set.add(1);
set.add(2);
set.add(2);
set.add(3);
set.add(3);
// Set {1, 2, 3}

// Converting to Array
const arr = [ ...set ];
// [1, 2, 3]

Object.prototype.toString.call(arr);
// [object Array]

/* Without Set */
const hasSameVal = val => ar.some(v === val);
const ar = [];

if (!hasSameVal(1)) ar.push(1);
if (!hasSameVal(2)) ar.push(2);
if (!hasSameVal(3)) ar.push(3);

WeakSet

与WeakMap一样,WeakSet也将丢失对内部数据的访问链接(如果内部数据已被垃圾收集)。

let John = { major: "math" };

const set = new Set();
const weakSet = new WeakSet();

set.add(John);
// Set {{...}}
weakSet.add(John);
// WeakSet {{...}}

John = null;
/* John 被垃圾收集 */

一旦对象 John 被垃圾回收,WeakSet就无法访问其引用 John 的数据。而且WeakSet不支持 for-offorEach,因为它不可迭代。

比较总结

相同点:添加相同的值不支持。

Map vs. WeakMap:WeakMap仅接受对象作为键,而Map不接受。

Map and Set:

  • 可迭代的对象,支持 for..offorEach... 运算符
  • 脱离GC关系

WeakMap and WeakSet:

  • 不是一个可迭代的对象,不能循环。
  • 如果引用数据被垃圾收集,则无法访问数据。
  • 支持较少的方法。

结语

不过,我想,很多团队或公司还是没有使用Maps或Sets。也许是因为他们觉得没有必要,或者是因为数组仍然可以做到几乎所有他们想要的东西。

然而,在JavaScript中,Maps或Sets可能是非常独特和强大的东西,这取决于每个情况。所以我希望有一天,你能有机会使用它们。

原文地址:https://medium.com/better-programming/map-weakmap-set-weakset-in-javascript-77ecb5161e3

作者:Moon

更多编程相关知识,请访问:编程入门!!

The above is the detailed content of A brief discussion on Map, WeakMap, Set and WeakSet in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use