https://leetcode.com/problems/find-first-palindromic-string-in-the-array/


Runtime: 100 ms, faster than 83.61% of TypeScript online submissions for Find First Palindromic String in the Array.

Memory Usage: 51 MB, less than 29.51% of TypeScript online submissions for Find First Palindromic String in the Array.


```typescript
function firstPalindrome(words: string[]): string {
    //8:39
    for (const word of words) {
        let newWord = word.split("").reverse().join("")
        if (newWord == word) {
            return word
        }
    }
    return ""
    //8:40
};
```
