for chars with java script

时间:2015-11-16 13:46:14

标签: javascript for-loop count

快速提问。我试图用JavaScript中的for循环给出数字。 不幸的是,这不起作用,如果我在java中进行编码,那么解决方案将使用println替换var和char和cosole.log并得到它,但是在这里......你有解决方案吗?

for ( var i = 'a'; i < 'z'; i++) {
    console.log(i);
}

1 个答案:

答案 0 :(得分:-1)

&#13;
&#13;
  for (var i = 'a'; i !== 'z'; i = nextChar(i)) {
        console.log(i);
    }
    
    function nextChar(c) {
        return String.fromCharCode(c.charCodeAt(0) + 1);
    }
&#13;
&#13;
&#13;

for(var i =&#39; a&#39 ;; i!==&#39; z&#39 ;; i = nextChar(i)){         的console.log(ⅰ);     }

function nextChar(c) {
    return String.fromCharCode(c.charCodeAt(0) + 1);
}

http://jsfiddle.net/fLwf5ys1/

或者如果你真的想要字符的ASCII值:

http://jsfiddle.net/fLwf5ys1/1/