Skip to content

Instantly share code, notes, and snippets.

@omarduarte
Last active August 29, 2015 14:03
Show Gist options
  • Save omarduarte/d33a3071ca294bbee8ef to your computer and use it in GitHub Desktop.
Save omarduarte/d33a3071ca294bbee8ef to your computer and use it in GitHub Desktop.
Move the first letter of each word to the end of it, then add 'ay' to the end of the word.
pigIt('Pig latin is cool'); //igPay atinlay siay oolcay
function pigIt(str){
return str.replace(/\b(\w)(\w+)/g,function(w,f,l){return l+f+"ay";});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment