mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
373 B
373 B
Vowel Dots
Instructions
Create a function named vowelDots
that receives a string. Your function should return a new string with a .
after every vowel.
Your RegEx should be stored in a variable named vowels
.
a, e, i, o and u are considered as vowels here.