https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/


Runtime: 68 ms, faster than 88.09% of TypeScript online submissions for Check If Two String Arrays are Equivalent.

Memory Usage: 45.2 MB, less than 9.52% of TypeScript online submissions for Check If Two String Arrays are Equivalent.


```typescript
function arrayStringsAreEqual(word1: string[], word2: string[]): boolean {
    //9:44
    return word1.join("") === word2.join("")
    //9:44
};
```
