Check if a given word is a palindrome
const isPalindrom=(word)=>{};
console.log(isPalindrom("madam"));
console.log(isPalindrom("Kayak"));
console.log(isPalindrom("me"));
How many vowels are in each word at one sentence?
Sentence: "Autronica is a leading innovator, manufacturer and supplier of fire and gas safety worldwide."
function countVowelAtWord(str) {}