trying to remove multiple object from array,solution i did is fine and working but what i want is i don't want to filter twice, want in a single way
so could you help me for best solution
Example
const arrList = [{v:'1',l:'label1'},{v:'2',l:'label2'},
{v:'3',l:'label3'}, {v:'4',l:'label4'},
{v:'5',l:'label5'}]
const filter1 = arrList.filter((a) => a.l !== 'label1')
const filter3 = filter1.filter((a) => a.l !== 'label3')
console.log(filter3);