We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0deeac commit 3742f8bCopy full SHA for 3742f8b
1662-check-if-two-string-arrays-are-equivalent.js
@@ -0,0 +1,8 @@
1
+/**
2
+ * @param {string[]} word1
3
+ * @param {string[]} word2
4
+ * @return {boolean}
5
+ */
6
+const arrayStringsAreEqual = function(word1, word2) {
7
+ return word1.join('') === word2.join('')
8
+};
0 commit comments