[JavaScript] 프로그래머스 JadenCase LEVEL2
3231 단어 문자열JavaScript프로그래머스JavaScript
function solution(s) {
let answer = '';
const arr = s.split(' ');
for (let word of arr) {
if (word === '') {
answer += ' ';
continue;
}
word = word[0].toUpperCase() + word.slice(1).toLowerCase();
answer += word + ' ';
}
return answer.slice(0, -1);
}
풀이
문제에서 주어진 문자열에 공백이 여러번 포함될수도 있다는 것을 간과했다.
문자열 앞뒤에도 공백이 있을 수 있고, 문자 사이에 공백이 2개 이상 있을수도 있다!
Author And Source
이 문제에 관하여([JavaScript] 프로그래머스 JadenCase LEVEL2), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@johnyejin/JavaScript-프로그래머스-JadenCase-LEVEL2저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)