In javascript, I simply need to compare:
Array2 = ['a', 'd']
with
Array1=['a','b','c','d','e'] //full subset
and return a new array of items which are not in Array 1. so the result should be
Array3 = ['b','c','e']
Appreciate a quick reply. Many thanks in advance