1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 19:42:51 +01:00

feat: add Set JavaScript content (#1859)

This commit is contained in:
Aroyan 2022-09-24 20:06:43 +08:00 committed by GitHub
parent db83c06abb
commit 1d916e06f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,8 @@
# Set
# Set
The `Set` object lets you store unique values of any type, whether [primitive](https://developer.mozilla.org/en-US/docs/Glossary/Primitive) values or object references. A value in the `Set` may only occur once; it is unique in the `Set`'s collection.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set'>Set - JavaScript</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://exploringjs.com/impatient-js/ch_sets.html'>Set - ExploringJS</BadgeLink>