码迷,mamicode.com
首页 > 其他好文 > 详细

回文数

时间:2019-12-30 00:18:05      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:spl   style   rev   inf   ever   mamicode   color   com   reverse   

技术图片

实现:

 var isPalindrome = function(x) {
    let str = x.toString();
    if (str.indexOf(‘-‘) === -1) {
      let temp = str.split(‘‘).reverse().join(‘‘);
      if (str === temp) {
        return true;
      } else {
        return false;
      }
    } else {
      return false
    }
 };

 

回文数

标签:spl   style   rev   inf   ever   mamicode   color   com   reverse   

原文地址:https://www.cnblogs.com/Tiboo/p/12116973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!