You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Task: write a recursive funtion which returns true if the string p assed to it is a palendrome (reads the same forward and backward). Otherwise it returns false.
const isPalindrome = (str) => {
// add whatever parameters you deem necessary - good luck!