Giter VIP home page Giter VIP logo

Comments (1)

huluoyang avatar huluoyang commented on August 16, 2024

非常抱歉,这么晚才回复你。
琐事缠身,有时候一耽误就忘记了。
今天仔细review此题和你的代码,
逻辑很清楚,我也认为代码没问题。
但显然有部分测试没通过。
在线编辑器不利于源码调试,我是新建html文件,把js放入其中,再用chrome dev source 添加断点来调试,才发现问题所在的。
1、str.charCodeAt(i+1) 缺乏判断。
str.charCodeAt(i+1)-str.charCodeAt(i)!=1
str.charCodeAt(i+1) 可能为NaN,所以if条件永远为真。
2、return undefined 应该是在for循环外部,而不是内部。
下面是我的代码:

function fearNotLetter(str) {
  var result;
  for(var i=0;i< str.length;i++){
    if(str.charCodeAt(i+1) && str.charCodeAt(i) - str.charCodeAt(i+1) !== -1){
         result = String.fromCharCode(str.charCodeAt(i)+1);
        return result;
    }
  }
  return undefined;
}

fearNotLetter("bcd");

from freecodecamp.cn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.