LeetCodeCheck if a String Is an Acronym of WordsCheck if a String Is an Acronym of WordsEasyArrayStringSolution export function isAcronym(words: string[], s: string): boolean { if (words.length !== s.length) { return false; } return words.every((word, i) => word[0] === s[i]); }LeetCodeCheck if a String Is an Acronym of Wordshttps://leetcode.com/problems/check-if-a-string-is-an-acronym-of-words