Skip to content

Instantly share code, notes, and snippets.

@LearningNerd
Last active July 13, 2017 02:14
Show Gist options
  • Select an option

  • Save LearningNerd/33d80f8613f2439ee5ab2dee33e53129 to your computer and use it in GitHub Desktop.

Select an option

Save LearningNerd/33d80f8613f2439ee5ab2dee33e53129 to your computer and use it in GitHub Desktop.
A saved mob programming session with Learn Teach Code!
// CHALLENGE: https://www.freecodecamp.org/challenges/check-for-palindromes
// TESTS:
// palindrome("eye") should return a boolean
//
function palindrome(str) {
// Good luck!
return true;
}
palindrome("eye");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment