Answers for "javascript compare values of two arrays"

1

javascript compare values of two arrays

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 "javascript compare values of two arrays"

Code answers related to "Javascript"

Browse Popular Code Answers by Language