JSFiddle - React, Tailwind, and code Playground

by Prakash Upadhyay

JavaScript

var items =  [
{'a':1,'b':2},
{'a':11,'b':22},
{'a':13,'b':23},
];

const result = items.filter(item => {
	return (item.a !== 11) &&  (item.a !== 12);
})

console.log(result);