Letter & Vowel Shift
Coderbytes Exercise 4- shift all letters to the right (a -> b, z -> a, & capitalize new vowels.
by Jason Land
JavaScript
//shift letters to right in alphabet, capitalize new vowels
function LetterChanges(str) {
// code goes here
return str;
alert(str);
}
LetterChanges("Shift me around");