思路:正则表达式。

function endsWithVowel(str) 
{
    return /[aeiouAEIOU]$/.test(str)
}

总结:正则表达式一般使用//包围起来。