How can I remove values from an array that are in another array?
For example if I have these two arrays:
var arr1 = ["how", "can", "i", "remove", "values", "from", "an", "array", "that", "are", "in", "another", "array"];
var arr2 = ["can", "i", "an", "are", "in"];
How can I end up with:
["how", "remove", "values", "from", "array", "that", "another", "array"]
Without making some big long function like here?