EN
JavaScript - filter array from all elements of another array
0 points
In this article, we would like to show you how to filter an array from all elements of another array in JavaScript.
In this example, we use the filter()
method to filter array1
from all elements of array2
and save the result in a new, result
array.
xxxxxxxxxx
1
var array1 = ['a', 'b', 'c', 'd', 'e'];
2
var array2 = ['b', 'c'];
3
4
var result = array1.filter((item) => !array2.includes(item));
5
6
console.log(result); // [ 'a', 'd', 'e' ]