[프로그래머스] 이상한 문자 만들기

ElenaPark·2021년 3월 3일
0

알고리즘

목록 보기
15/37
post-thumbnail

이상한 문자 만들기

풀이

function solution(str) {
  return str
    .split("")
    .map((item, idx) =>
      idx % 2 === 0 ? item.toUpperCase() : item.toLowerCase()
    )
    .join("");
}

function solution1(str) {
  return str.split(" ").map(solution).join(" ");
}

console.log(solution1("try hello world")); // "TrY HeLlO WoRlD"
profile
Front-end 개발자입니다.

0개의 댓글