基于 JavaScript 中的算法加密字符串
问题
我们需要编写一个JavaScript函数,该函数接受一个字符串并根据以下算法对其进行加密-
该字符串仅包含空格分隔的单词。
我们需要使用以下规则加密字符串中的每个单词-
第一个字母需要转换成它的ASCII码。
第二个字母需要与最后一个字母互换。
因此,据此,字符串“good”将被加密为“103doo”。
示例
以下是代码-
const str = 'good'; const encyptString = (str = '') => { const [first, second] = str.split(''); const last = str[str.length - 1]; let res = ''; res += first.charCodeAt(0); res += last; for(let i = 2; i输出结果 以下是控制台输出-
103doo