unliar / unliar.github.io

一个已经不再使用的静态博客,新的博客在后边。
https://happysooner.com
0 stars 0 forks source link

判断是否是回文数 #43

Open unliar opened 3 years ago

unliar commented 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;
};