Skip to content

Instantly share code, notes, and snippets.

@Underdoge
Created March 6, 2017 04:19
Show Gist options
  • Save Underdoge/fff58bed401cecb21a26485139a23806 to your computer and use it in GitHub Desktop.
Save Underdoge/fff58bed401cecb21a26485139a23806 to your computer and use it in GitHub Desktop.
alphabeticShift
function alphabeticShift(inputString) {
var shift=inputString.split("");
var shifted=shift.map((curr)=>{
if (curr=='z')
return 'a';
else
return String.fromCharCode(curr.charCodeAt(0)+1);
})
return shifted.join("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment