Set objects are like an unordered Array in which any given value can only be present once. Their declaration looks as follows: let set1: Set = [1, 2] Note that the Set literal looks like an Array, and so the type must be set explicitly. The most common Set methods are probably th...