var filteredArray = sourceArray.filter(function(e) {
return e.someKey !== null && e.someKey !== undefined;
});
const key = 'имя какого-то свойства';
const newArr = arr.filter(n => n[key] != null);
const newArr = arr.filter(function(n) {
return this.every(m => n[m] != null);
}, [ 'имя какого-то свойства', 'ещё одно', 'и ещё' ]);
arr.length -= arr.reduce((acc, n, i, a) => (
a[i - acc] = n,
acc + Object.values(n).some(m => m == null)
), 0);