Replaces all vowels in a string with the specified replacement character.
The string to modify.
The character to replace vowels with.
The string with vowels replaced.
replaceVowels("Hello World", "*"); // "H*ll* W*rld"replaceVowels("Tweakr", "#"); // "Tw##kr" Copy
replaceVowels("Hello World", "*"); // "H*ll* W*rld"replaceVowels("Tweakr", "#"); // "Tw##kr"
1.2.0
Replaces all vowels in a string with the specified replacement character.