compare values of two arrays if the value is present set the value of the second array o true code example
Example 1: javascript find matching elements in two arrays
const intersection = array1.filter(element => array2.includes(element));
Example 2: javascript find matching elements in two arrays
let firstArray = ["One", "Two", "Three", "Four", "Five"];
let secondArray = ["Three", "Four"];
let map = {};
firstArray.forEach(i => map[i] = false);
secondArray.forEach(i => map[i] === false && (map[i] = true));
let jsonArray = Object.keys(map).map(k => ({ name: k, matched: map[k] }));