Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

merge array no duiplicates js

let array1 = ['a','b','c'];
let array2 = ['c','c','d','e'];
let array3 = array1.concat(array2);
array3 = [...new Set([...array1,...array2])]; // O(n)
Source by codeburst.io #
 
PREVIOUS NEXT
Tagged: #merge #array #duiplicates #js
ADD COMMENT
Topic
Name
4+4 =