We're a place where coders share, stay up-to-date and grow their careers.
In Ts:
const removeVowels = (text: string) => text.replace(/[aeiou]/gi, '');
In Ts: