Last updated 4 years ago
Was this helpful?
find all lower case vowels through Regular Expression and remove
const shortcut = (string) => string.replace(/[aeiou]/g, '');