I have two arrays that contain objects. From first array how can I remove the items that are already present in the second array?
First array:
var s = [
  {"Name": "1"},
  {"Name": "2"},
  {"Name": "3"},
  {"Name": "4"},
  {"Name": "5"},
  {"Name": "6"}
]
Second array:
var t = [
  {"Name": "1"},
  {"Name": "2"},
  {"Name": "3"},
  {"Name": "8"}
]
Expected output:
[
  {"Name": "4"},
  {"Name": "5"},
  {"Name": "6"}
]