เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับสตริงและเปลี่ยนตัวอักษรทุกตัวในสตริงจากตัวอักษรภาษาอังกฤษเป็นองค์ประกอบที่ตามมา
ตัวอย่างเช่น หากสตริงคือ −
const str = 'how are you';
จากนั้นผลลัพธ์ควรเป็น −
const output = 'ipx bsf zpv'
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
const str = 'how are you'; const isAlpha = code => (code >= 65 && code <= 90) || (code >= 97 && code <= 122); const isLast = code => code === 90 || code === 122; const nextLetterString = str => { const strArr = str.split(''); return strArr.reduce((acc, val) => { const code = val.charCodeAt(0); if(!isAlpha(code)){ return acc+val; }; if(isLast(code)){ return acc+String.fromCharCode(code-25); }; return acc+String.fromCharCode(code+1); }, ''); }; console.log(nextLetterString(str));
ผลลัพธ์
ต่อไปนี้เป็นผลลัพธ์ในคอนโซล -
ipx bsf zpv