array set code example
Example 1: array to set javascript
const myArray = [1,2,3,1,5,8,1,2,9,4];
const unique = [...new Set(myArray)];
const myString = ["a","b","c","a","d","b"];
const uniqueString = [...new Set(myString)];
Example 2: set js
const numbers = [2,3,4,4,2,3,3,4,4,5,5,6,6,7,5,32,3,4,5]
console.log([...new Set(numbers)])
Example 3: set in javascript
const firstSet = new Set([1, 2, 3]);
firstSet.add('hi');
firstSet.add(3);
firstSet.delete('hi');
console.log(firstSet.has('hi'));
console.log(firstSet);
for (const entry of firstSet.values()) {
console.log(entry);
Example 4: js new array from new set
return Array.from(new Set(this.posts.map(e => e.category)))