You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
either/src/are-arrays-equal.js

16 lines
234 B
JavaScript

"use strict";
module.exports = function areArraysEqual(a, b) {
if (a.length !== b.length) {
return false;
} else {
for (let [ i, item ] of a.entries()) {
if (b[i] !== item) {
return false;
}
}
return true;
}
};