Suppose I have an array like:
const items=[{
"taskType": "type2",
"taskName": "two",
"id": "19d0da63-dfd0-4c00-a13a-cc822fc81298"
},
{
"taskType": "type1",
"taskName": "two",
"id": "c5385595-2104-409d-a676-c1b57346f63e"
}]
I want to have an arrow (filter) function that returns all items except for where taskType=type2 and taskName=two. So in this case it just returns the second item?