#質問
文字列を受け取り、次のアルゴリズムに基づいて暗号化する JavaScript 関数を記述する必要があります -例
ライブデモンストレーション
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 < str.length - 1; i++){ const el = str[i]; res += el; }; res += second; return res; }; console.log(encyptString(str));
出力
103doo
以上がJavaScriptを使用したアルゴリズムに基づいて文字列を暗号化します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。