JavaScript_35.이상한 문자 만들기

hams·2023년 5월 1일
0

algorithm

목록 보기
37/62

Q.
문자열 s는 한 개 이상의 단어로 구성되어 있습니다. 각 단어는 하나 이상의 공백문자로 구분되어 있습니다. 각 단어의 짝수번째 알파벳은 대문자로, 홀수번째 알파벳은 소문자로 바꾼 문자열을 리턴하는 함수, solution을 완성하세요.


나의 코드

const solution = (s) => {
  const words = s.split(" ");
  const answer = words
    .map((word) =>
      [...word]
        .map((char, index) =>
          index % 2 === 0 ? char.toUpperCase() : char.toLowerCase()
        ).join("")
    ).join(" ");
  return answer;
};

다른 사람의 코드

function toWeirdCase(s){
  //함수를 완성해주세요
  return s.toUpperCase().replace(/(\w)(\w)/g, function(a){return a[0].toUpperCase()+a[1].toLowerCase();})

}

0개의 댓글