문자열과 숫자 n을 받는 JavaScript 함수를 작성해야 합니다(n이 문자열의 길이를 정확히 나눕니다). 문자열의 n개의 동일한 부분을 포함하는 길이가 n인 문자열의 배열을 반환해야 합니다.
이 함수의 코드를 작성해 봅시다 -
예시
const str = 'this is a sample string'; const num = 5; const divideEqual = (str, num) => { const len = str.length / num; const creds = str.split("").reduce((acc, val) => { let { res, currInd } = acc; if(!res[currInd] || res[currInd].length < len){ res[currInd] = (res[currInd] || "") + val; }else{ res[++currInd] = val; }; return { res, currInd }; }, { res: [], currInd: 0 }); return creds.res; }; console.log(divideEqual(str, num));
출력
다음은 콘솔의 출력입니다 -
[ 'this ', 'is a ', 'sampl', 'e str', 'ing' ]