So I let's say I have an array like this:
["one", "two", "three"]
And then I have another array like this:
["one", "two", "three", "four"]
I need my function to compare the two arrays and return "four". For example, I want the function to do nothing when the array does this:
["one", "two"]
But again, I want the function to return the difference when the array goes back to this:
["one", "two", "three"]
I've been playing with array.filter but so far, filter() has done everything but what I need it to. I know I could accomplish this with a complicated forEach() but I'd really like to avoid that.