JS Capsules: Sets
Introduction
A Set is a collection of unique values. The emphasis on unique is because a Set cannot store the same data more than once. It stores each piece of data as a unique key with an inherent value of true.
It was introduced in JavaScript ES6 a...
dpkreativ.hashnode.dev3 min read