I have two lists as below. How to merge two lists with unique value (1), and how to exclude the second list items in the first list (2)
private List1: [];
private List2: [];
this.List1 = [1, 2, 3, 4, 5];
this.List2 = [2, 4, 6];
Results
1) result = [1, 2, 3, 4, 5, 6]
2) result = [1, 3, 5]