Remove Vowels
STRING
Problem
Given a string text
, return a new string with all vowels (a, e, i, o, u) removed.
Examples
removeVowels("hello") // "hll" removeVowels(" test 12A3") // " tst 123"
Loading...
Given a string text
, return a new string with all vowels (a, e, i, o, u) removed.
removeVowels("hello") // "hll" removeVowels(" test 12A3") // " tst 123"