Sets In JavaScript Are 🔥
In MDN Set it states "The Set object lets you store unique values of any type, whether primitive values or obj...
For further actions, you may consider blocking this person and/or reporting abuse
Cool read!
Fun 'interview style' question that can utilize sets:
Return an array of unique characters from the string 'Hello World', excluding spaces:
*** MY ANSWER ***
new Set('hello world'.split(' ').reduce((acc, cur) => acc.concat([...cur]), []));
new Set('hello world'.split(' ').flatMap(cur => [...cur]));
Cool I guess you could also do
[...new Set([...'Hello World'])]
Almost, it won't exclude the space so you'd have to do something like
[...new Set([...'Hello World'.replace(/\s/g, '')])]
which kinda ruins how nice and concise this was :(All awesome implementations!!
Fair point I forgot about the space.
Thanks! :)
I've been pretty impressed by the potential of sets before. I feel a little confused
What's confusing maybe I can help?
I'd seen them used before to make iterable objects of some kind. I didn't fully understand it. But here you're using it to remove duplicates from an array. Is this the intended behavior of sets?
It is not the only intended use for Sets, they are also wicked fast and efficient at locating elements to see if they exist and deleting elements. Both are built-in functionality for Sets. I like to think of sets as almost a Hybrid of Maps and Arrays, its a bit of an oversimplification and generalization but I personally like thinking about them in that way.
One major difference is Arrays are Indexed collections while Sets are Keyed collections, which allows for some of the behaviors I mentioned that are similar to Maps like
.has
and.delete()
and also related to why duplicates are not allowed (Maps also can't have duplicates)I didn't know that map was its own type of object - in addition to a function on an array
developer.mozilla.org/en-US/docs/W...
Thanks for sharing
Happy too! I plan on adding more to the article so stay tuned lol
Also cool are the new methods in draft to be added to the language: github.com/tc39/proposal-set-methods
Thank you! 😁