I have following two arrays
let a = ["Hello", "bye", "good morning", "test"];
let b = ["Hello", "test"];
How can i delete items that exists in array b from array a(without mutation)? The resultant array should look like:-
["bye", "good morning"];