Rhapsodist

javascript

Javascript로 문자열을 대문자나 소문자 바꾸기

2020.03.03

Created By Rhapsodist

Rhapsodist

Javascript로 문자열을 대문자나 소문자 바꾸기

1. 개요

String에 존재하는 모든 문자를 대문자소문자 로 변환 하는 함수들은 다음과 같다.

  • toUpperCase
  • toLowerCase

2. toUpperCase 함수

toUpperCase() 함수를 사용하면 문자열 안의 모든 문자를 대문자 로 변경 가능하다.

const Str = 'abcdEFGH123!@#'
console.log(Str.toUpperCase())

//=> "ABCDEFGH123!@#"

3. toLowerCase 함수

toLowerCase() 함수를 사용하면 문자열 안의 모든 문자를 소문자 로 변경 가능하다.

const Str = 'abcdEFGH123!@#'
console.log(Str.toLowerCase())

//=> "abcdefgh123!@#"

Share to ...

#javascript
#upper
#lower
#case
#string