Answers for "Remove from string vowel sound"

0

Remove from string vowel sound

function disemvowel(str) {
  return str.replace(/[aeiou]/gi, '');
}
Posted by: Guest on January-22-2022

Browse Popular Code Answers by Language