0andme.github.io
0andme gitHub

String.toUpperCase() String.toLowerCase()

문자열 전부 대 소문자로 바꾸기
April 17, 2022
  1. js

String.prototype.toUpperCase()

호출한 문자열을 전부 대문자로 변환하고 반환한다. 원래의 문자열은 변경되지 않는다.

✤ 기본 예제
const str = "apple"
console.log(str.toUpperCase()) // APPLE

String.prototype.toLowerCase()

호출한 문자열을 전부 소문자로 변환하고 반환한다. 원래의 문자열은 변경되지 않는다.

✤ 기본 예제
const str = "APPLE"
console.log(str.toLowerCase()) //apple

공식 문서


Profile picture