모든 문자를 대문자로 바꿔주는 메서드입니다.
const name = "marry"; console.log(name.toUpperCase()); 출력 값 : MARRY
반대로 소문자로 바꿔주는 메서드도 있네요 toLowerCase()