From 1d916e06f5541d5930510629c8eccf63b52023ef Mon Sep 17 00:00:00 2001 From: Aroyan <43630681+aroyan@users.noreply.github.com> Date: Sat, 24 Sep 2022 20:06:43 +0800 Subject: [PATCH] feat: add Set JavaScript content (#1859) --- .../101-keyed-collections/102-set.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md b/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md index b5fdecda9..e6418946f 100644 --- a/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md +++ b/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md @@ -1 +1,8 @@ -# Set \ No newline at end of file +# 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. + +Free Content + +Set - JavaScript +Set - ExploringJS