Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save LearningNerd/7124136ea4ccd420f29ae2fda11fe5d9 to your computer and use it in GitHub Desktop.

Select an option

Save LearningNerd/7124136ea4ccd420f29ae2fda11fe5d9 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