odin-default-js-exercises/pig_latin/pigLatin.js

24 lines
542 B
JavaScript
Raw Normal View History

2017-12-15 18:52:22 +00:00
function translate(string) {
return string
.split(" ")
.map(word => {
const index = firstVowelIndex(word);
const beginning = word.slice(0, index);
const ending = word.slice(index);
return `${ending}${beginning}ay`;
})
.join(" ");
2017-09-20 23:04:46 +00:00
}
2017-12-15 18:52:22 +00:00
function firstVowelIndex(string) {
const vowels = string.match(/[aeiou]/g);
if (vowels[0] == "u" && string[string.indexOf(vowels[0]) - 1] == "q") {
return string.indexOf(vowels[1]);
}
return string.indexOf(vowels[0]);
2017-09-20 23:04:46 +00:00
}
2017-12-15 18:52:22 +00:00
module.exports = {
translate
};