Last active
July 13, 2017 02:14
-
-
Save LearningNerd/33d80f8613f2439ee5ab2dee33e53129 to your computer and use it in GitHub Desktop.
A saved mob programming session with Learn Teach Code!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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