For full text search please use the '?' prefix. e.g. ? Onboarding
Disemvowel Trolls
JavaScript
function
disemvowel
(
str
)
{
const
regex
=
/
[aeiou]
/
gi
;
str
=
str
.
replace
(
regex
,
''
)
;
return
str
;
}
Tags
javascript (Private)
7-kyu (Private)
codewars (Private)
answer (Private)
JavaScript