-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Labels
Description
Directions
Given a string, return true if the string is a palindrome or false if it is not. Palindromes are strings that form the same word if it is reversed. Do include spaces and punctuation in determining if the string is a palindrome. Make use of Functions and Methods where necessory
You can code this with any language of your choice!
Examples
palindrome("abba") === true
palindrom("abcdefg") === false