When handling logic with JavaScript, you might need to compare two arrays to see if they are equal or not. Really, this shouldn’t be difficult, as you’d think we could easily use either the loose equality (double equals – ==) or the strict equality (triple equals – ===). But
