Answers for "js array from set"

15

array to set javascript

const myArray = [1,2,3,1,5,8,1,2,9,4];
const unique = [...new Set(myArray)]; // [1, 2, 3, 5, 8, 9, 4]

const myString = ["a","b","c","a","d","b"];
const uniqueString = [...new Set(myString)]; //["a", "b", "c", "d"]
Posted by: Guest on July-25-2020
1

js new array from new set

return Array.from(new Set(this.posts.map(e => e.category)))
Posted by: Guest on August-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language