快速提问。我试图用JavaScript中的for循环给出数字。 不幸的是,这不起作用,如果我在java中进行编码,那么解决方案将使用println替换var和char和cosole.log并得到它,但是在这里......你有解决方案吗?
for ( var i = 'a'; i < 'z'; i++) {
console.log(i);
}
答案 0 :(得分:-1)
for (var i = 'a'; i !== 'z'; i = nextChar(i)) {
console.log(i);
}
function nextChar(c) {
return String.fromCharCode(c.charCodeAt(0) + 1);
}
&#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);
}
或者如果你真的想要字符的ASCII值: