--- title: String.prototype.toUpperCase() slug: Web/JavaScript/Reference/Global_Objects/String/toUpperCase tags: - JavaScript - Method - Prototype - Reference - String translation_of: Web/JavaScript/Reference/Global_Objects/String/toUpperCase ---
toUpperCase()
메서드는 문자열을 대문자로 변환해 반환합니다.
str.toUpperCase()
대문자로 변환한 새로운 문자열.
toUpperCase()
메서드는 문자열을 대문자로 변환한 값을 반환합니다. JavaScript의 문자열은 불변하므로 원본 문자열에는 영향을 주지 않습니다.
console.log('alphabet'.toUpperCase()); // 'ALPHABET'
this
의 문자열 변환toUpperCase()
의 this
가 문자열이 아니고, undefined
와 null
도 아니면 자동으로 문자열로 변환합니다.
const a = String.prototype.toUpperCase.call({ toString: function toString() { return 'abcdef'; } }); const b = String.prototype.toUpperCase.call(true); // prints out 'ABCDEF TRUE'. console.log(a, b);
명세 | 상태 | 비고 |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Initial definition. Implemented in JavaScript 1.0. |
{{SpecName('ES5.1', '#sec-15.5.4.18', 'String.prototype.toUpperCase')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-string.prototype.touppercase', 'String.prototype.toUpperCase')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-string.prototype.touppercase', 'String.prototype.toUpperCase')}} | {{Spec2('ESDraft')}} |
{{Compat("javascript.builtins.String.toUpperCase")}}