Answers for "remove vowels from string in javascript with loops"

0

remove vowels from string javascript

var strings = ["bongo drums", "guitar", "flute", "double bass",
               "xylophone","piano"];
string = strings.map(x=>x.replace( /[aeiou]/g, '' ));
console.log(string);
Posted by: Guest on May-06-2020
1

how do i remove all vowels from a string in javascript and return the result

function disemvowel(str) {
  var strArr = str.split('');
  for (var x = 0; x < str.length; x++) {
    var char = str[x].toLowerCase();
    if (char == "a" || char == "e" || char == "i" || char == "o" || char == "u") {
      strArr[x] = '';
    }
  }
  return strArr.join('');
}
Posted by: Guest on May-27-2021

Code answers related to "remove vowels from string in javascript with loops"

Code answers related to "Javascript"

Browse Popular Code Answers by Language