FRONT/JAVASCRIPT

[Javascript] 알고리즘 기본 문제 - 대소문자 변환

연듀 2022. 3. 25. 21:51

13.대소문자 변환

 

function solution(s) {
  let answer = "";
  for (let x of s) {
    if (x === x.toUpperCase()) answer += x.toLowerCase();
    else answer += x.toUpperCase();
  }
  return answer;
}

let str = "StuDY";
console.log(solution(str));