Set
Collection of elements that store unique elements.
A set of special type collections- a set of values, where each value may occur only once.
var set1 = new Set([10, 20, 30, 30, 40, 40]);
//it contains [10, 20, 30 ,40]
To add more values to set
v...