JavaScript中字符串的ASCII总和差
ASCII码:
ASCII是7位字符代码,其中每个位代表一个唯一字符。每个英文字母都有唯一的十进制ASCII码。
我们需要编写一个函数,该函数接受两个字符串并计算它们的ascii分数(即,每个字符串字符的ascii十进制总和)并返回差值。
让我们为该函数编写代码-
示例
为此的代码将是-
const str1 = 'This is an example sting';
const str2 = 'This is the second string';
const calculateScore = (str = '') => {
return str.split("").reduce((acc, val) => {
return acc + val.charCodeAt(0);
}, 0);
};
const ASCIIDifference = (str1, str2) => {
const firstScore = calculateScore(str1);
const secondScore = calculateScore(str2);
return Math.abs(firstScore - secondScore);
};
console.log(ASCIIDifference(str1, str2));输出结果
控制台中的输出-
116
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短