Based on an object like this:
var p = [
{x: [
{x1: "John"},
]
},
{x: [
{x1: "Louis"},
]
}
];
I need to filter p objects when x1 is different from any of those values:
var p = [
{x: [
{x1: "Louis"},
]
},
];
Thanks all of you for your help.