알파벳 문자열과 숫자, 예를 들어 n을 취하는 JavaScript 함수를 작성해야 합니다. 그런 다음 모든 문자가 옆에 있는 n 위치의 알파벳으로 대체되는 새 문자열을 반환해야 합니다.
예를 들어 문자열과 숫자가 -
인 경우const str = 'abcd'; const n = 2;
그러면 출력은 다음과 같아야 합니다. -
const output = 'cdef';
예시
이에 대한 코드는 -
const str = 'abcd'; const n = 2; const replaceNth = (str, n) => { const alphabet = 'abcdefghijklmnopqrstuvwxyz'; let i, pos, res = ''; for(i = 0; i < str.length; i++){ pos = alphabet.indexOf(str[i]); res += alphabet[(pos + n) % alphabet.length]; }; return res; }; console.log(replaceNth(str, n));
출력
콘솔의 출력은 -
cdef