添加一个打印所有小写字符的for语句循环:
var sOne = ''; // scratch variable
// for statements
console.log("\n..for..\n");
for ( i = 65; i <= 90 ; i += 1) {
sOne += String.fromCharCode(i);
};
console.log("sOne is: ", sOne);
输出 -
sOne是:ABCDEFGHIJKLMNOPQRSTUVWXYZ
这可能是非常基本的,但是如果你能在一个很好的补救层面上解释它。
答案 0 :(得分:1)
小写字母的ASCII码从97-122开始。因此,如果您将i值范围设置为97到122,它将打印所有小写字母。它会是这样的。
var sOne = ''; // scratch variable
// for statements
console.log("\n..for..\n");
for ( i = 97; i <= 122 ; i += 1) {
sOne += String.fromCharCode(i);
};
console.log("sOne is: ", sOne);