Skip to content

345-reverse-vowels-of-a-string

DevGod
DevGod
Vtuber
/**
* @param {string} s
* @return {string}
*/
var reverseVowels = function(s) {
const vow = s.match(/[aeiou]/gi);
return s.replace(/[aeiou]/gi, el=> vow.pop());
};