javascript check if array is equal to another array code example

Example 1: javascript check if elements of one array are in another

const found = arr1.some(r=> arr2.includes(r))

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;

};

Example 3: javascript check if array is subset of another

let superSet = ['B', 'C', 'A', 'D'];
let subSet = ['D', 'C'];
let mixedSet = new Set([...superSet, ...subSet]);
let isSubset = mixedSet.size == superSet.length

Example 4: if array ontains any item of another array js

const found = arr1.some(r=> arr2.indexOf(r) >= 0)