Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

filter an array of objects and match its key with values inside another array

const arr = [1, 2, 3, 4]
const brr = [2, 4]
const res = arr.filter((f) => !brr.includes(f))
console.log(res)
 
PREVIOUS NEXT
Tagged: #filter #array #objects #match #key #values #array
ADD COMMENT
Topic
Name
8+6 =