--- title: String.prototype.toUpperCase() slug: Web/JavaScript/Reference/Global_Objects/String/toUpperCase tags: - JavaScript - Method - Prototype - String translation_of: Web/JavaScript/Reference/Global_Objects/String/toUpperCase original_slug: Web/JavaScript/Referencje/Obiekty/String/toUpperCase ---
{{JSRef}}
Zwraca wartość wywołującego łańcucha znaków, skonwertowaną na duże litery.
str.toUpperCase()
Metoda toUpperCase()
zwraca wartość łańcucha znaków skonwertowanego na duże litery. toUpperCase()
nie wpływa na wartość samego łańcucha.
toUpperCase()
console.log('alfabet'.toUpperCase()); // 'ALFABET'