LeetCodeCheck If Two String Arrays are EquivalentCheck If Two String Arrays are EquivalentEasyArrayStringSolution export function arrayStringsAreEqual(word1: string[], word2: string[]): boolean { return word1.join('') === word2.join(''); }LeetCodeCheck If Two String Arrays are Equivalenthttps://leetcode.com/problems/check-if-two-string-arrays-are-equivalent