Open unliar opened 3 years ago
1、
var isPalindrome = function(x) { const str= `${x}`; const len = str.length; for(let index = 0;index < len;index++){ if(str[index]!==str[len-1-index]){ return false; } } return true; };
1、