We're a place where coders share, stay up-to-date and grow their careers.
JS
const disemvowel = (str) => str.replace(/[aeoiu]/gi, '');
JS
const disemvowel = (str) => str.replace(/[aeoiu]/gi, '');