Answers for "js check if two arrays contain same values"

1

js check if two arrays contain same values

const a = ['Left', 'Right'];
const b = ['Right', 'Left'];

//	true if a and b contain the same values
//	false otherwise
const c = a.sort().join(',') === b.sort().join(',');
Posted by: Guest on April-26-2022

Code answers related to "js check if two arrays contain same values"

Code answers related to "Javascript"

Browse Popular Code Answers by Language