Loading...
Engaged Employer
Remove all the vowels from a string
Anonymous
vowels = 'euioa' text = "Hello world" result = ''.join([s for s in text if s not in vowels])
function ReturnVowels(sen) { let split = sen.split(""); let len = split.length; let vowels = []; for(let i = 0; i < len; i++ ) { if(split[i] !== 'a' && split[i] !== 'e' && split[i] !== 'i' && split[i] !== 'o' && split[i] !== 'u' ) { vowels.push(split[i]); } } let join = vowels.join(""); return join; }
Check out your Company Bowl for anonymous work chats.
Get actionable career advice tailored to you by joining more bowls.
Stay ahead in opportunities and insider tips by following your dream companies.
Get personalized job recommendations and updates by starting your searches.