Third article in my javascript journey and after fundamentals and arrays, here are some useful built-in types/functions that could be handy when writing a program. As usual, this is a non-verbose, developer-oriented article.
Set
A set cannot have duplicate elements.
let set = new Set([0, 1, 2, 3])
set.