Skip to content

3856-trim-trailing-vowels

DevGod
DevGod
Elf Vtuber
/**
* @param {string} s
* @return {string}
*/
var trimTrailingVowels = function(s) {
return s.replace(/[aeiou]+$/,"");
};