I have two arrays:
let arr1 = ["one.json", "two.json", "three.json"]
let arr2 = ["one.json", "three.json"]
Now I want to remove all values of arr2 in arr1, so my expected result in the example above would be let arrFiltered = ["two.json"]. I know how to handle this using a for-loop, however, I thought there may is an easier and more performance-oriented solution?
