JavaScript:实现字符串是否回文Palindrome算法 /** */ const PalindromeRecursive = (string) => { // Base case if (string.length < 2)