check if two vectors have values in common js code example

Example 1: javascript compare object arrays keep only entries not in both

var result = result1.filter(function (o1) {
    return result2.some(function (o2) {
        return o1.id === o2.id; // return the ones with equal id
   });
});
// if you want to be more clever to find those in common:
let result = result1.filter(o1 => result2.some(o2 => o1.id === o2.id));

// To find those in 1 NOT in 2:
let result = result1.filter(o1 => !result2.some(o2 => o1.id === o2.id));

Example 2: check if 2 arrays are equal javascript

var arraysMatch = function (arr1, arr2) {

	// Check if the arrays are the same length
	if (arr1.length !== arr2.length) return false;

	// Check if all items exist and are in the same order
	for (var i = 0; i < arr1.length; i++) {
		if (arr1[i] !== arr2[i]) return false;
	}

	// Otherwise, return true
	return true;

};