Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save eddyruiz/385236214d0b9d6186e35db1dc29e087 to your computer and use it in GitHub Desktop.

Select an option

Save eddyruiz/385236214d0b9d6186e35db1dc29e087 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