Skip to content

Instantly share code, notes, and snippets.

@ijadams
Created July 7, 2017 18:58
Show Gist options
  • Save ijadams/58aa62fda8c7658bf243ea3b16c2c1ce to your computer and use it in GitHub Desktop.
Save ijadams/58aa62fda8c7658bf243ea3b16c2c1ce to your computer and use it in GitHub Desktop.
songe bob meme case
function spongeBob(str){
return str.split('').map((v,i) => i % 2 ? v.toLowerCase(): v.toUpperCase()).join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment