Last active
September 12, 2018 16:06
-
-
Save jordanhudgens/d025679595c321d6b25ea7f5155d55e9 to your computer and use it in GitHub Desktop.
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
const isPalindrome = str => { | |
return ( | |
str | |
.split("") | |
.reverse() | |
.join() === str | |
); | |
}; | |
isPalindrome("tacocat"); // true | |
isPalindrome("racecar"); // true | |
isPalindrome("asdf"); // false | |
isPalindrome("nope"); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment