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...