Answers for "loop array and check if value matches in js"

1

loop array and check if value matches in js

var arr1 = [1, 3, 4,];

var arr2 = [
  {
    id: 1,
    title: 'Title 1',
   },
  {
    id: 2,
    title: 'Title 2',
   },
];

var res = arr2.filter(i => arr1.includes(i.id));

console.log(res);
Posted by: Guest on February-25-2021

Code answers related to "loop array and check if value matches in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language