在 JavaScript 中查找小写字母字符串的基于 1 的索引得分
问题
我们需要编写一个 JavaScript 函数,该函数接受一个字母小写字符串。字母表中 'a' 的索引为 1,'b' 的索引为 2,'c' 的索引为 3... 'z' 的索引为 26。
我们的函数应计算字符串的所有字符索引并返回结果。
示例
代码如下 -
const str = 'lowercasestring'; const findScore = (str = '') => { const alpha = 'abcdefghijklmnopqrstuvwxyz'; let score = 0; for(let i = 0; i < str.length; i++){ const el = str[i]; const index = alpha.indexOf(el); score += (index + 1); }; return score; }; console.log(findScore(str));
输出
控制台输出如下 -
188
广告