在尝试(但失败)为奥丁项目练习编写凯撒密码作业后,我最终屈服并查找答案。不过,我不太明白。
我正在寻求对每一行的作用及其工作原理的解释。我复制的代码对每一行的作用有一些简短的描述,但我仍然不明白它是如何工作的。
const caesar = function (str, amount) {
// Wrap the amount
if (amount < 0) {
return caesar(str, amount + 26);
}
// Make an output variable
var output = "";
// Go through each character
for (var i = 0; i < str.length; i++) {
// Get the character we'll be appending
var c = str[i];
// If it's a letter...
if (c.match(/[a-z]/i)) {
// Get its code
var code = str.charCodeAt(i);
// Uppercase letters
if (code >= 65 && code <= 90) {
c = String.fromCharCode(((code - 65 + amount) % 26) + 65);
}
// Lowercase letters
else if (code >= 97 && code <= 122) {
c = String.fromCharCode(((code - 97 + amount) % 26) + 97);
}
}
// Append
output += c;
}
// All done!
return output;
};
泛舟湖上清波郎朗
相关分类