Home 대문자와 소문자 바꿔서 출력하기
Post
Cancel

대문자와 소문자 바꿔서 출력하기

내일배움캠프 LGLG!

7주차(주특기 심화 - React)

toUpperCase(), toLowerCase()

영어로된 문자열은 toUpperCase(), toLowerCase() 메소드를 상요하여 각각 대문자, 소문자로 변경할 수 있습니다.

toUpperCase()

toUpperCase()는 문자열 내의 모든 문자를 대문자로 변경한다.

1
2
3
4
const str = "hello";

upperStr = str.toUpperCase();
console.log(upperStr) // HELLO

toLowerCase()

toLowerCase()는 문자열 내의 모든 문자를 소문자로 변경한다.

1
2
3
4
const str = "HELLO";

upperStr = str.toLowerCase();
console.log(upperStr) // hello

대소문자 변경

1
2
3
4
5
6
7
8
9
10
11
12
13
14
function solution(word){
  let answer = '';
  for(let x of word){
    if(x === x.toLowerCase()){
      answer += x.toUpperCase();
    } else {
      acswer += x.toLowerCase();
    }
  }
  return answer;
}

const word = "HelloWorld"
console.log(solution(word)); // hELLOwORLD
This post is licensed under CC BY 4.0 by the author.

짝수는 싫어요

내일배움캠프 7주차