# difference
Gets an array that contains the elements that are present in the array a, but not in the array b.
difference([1, 2, 3], [2, 3, 4]); // [1]
Gets an array that contains the elements that are present in the array a, but not in the array b.
difference([1, 2, 3], [2, 3, 4]); // [1]