Array.prototype.equals = function (other) { if (this.length != other.length) { return false; } let i = this.length; while (--i >= 0) { if (this[i] !== other[i]) { return false; } } return true; };