我们需要编写一个 JavaScript 函数,该函数接收一个字符串作为输入并返回一个新字符串,其中每个单词的最后一个元音都被删除。例如:如果字符串为 -const str = 'This is an example string';则输出应为 -const output = 'Ths s n exampl strng';因此,让我们为该函数编写代码 -示例此代码将是 -const str = 'This is an example string'; const removeLast = word => { const lastIndex = el => word.lastIndexOf(el); const ind = Math.max(lastIndex('a'), lastIndex('e'), lastIndex('i'), lastIndex('o'), lastIndex('u')); return word.substr(0, ind) + word.substr(ind+1, ... 阅读更多