“converter string em maiúsculas” Respostas de código

JavaScript em maiúsculas

var str = "Hello World!";
var res = str.toUpperCase();  //HELLO WORLD!
Batman

String maiúsculas


let txt = "Hello World!";
txt = txt.toUpperCase();
MD RAZZAK

converter string em maiúsculas

function changeToUpperCase(founder) {
  return founder.toUpperCase();
}

// calling the function 
const result = changeToUpperCase("Quincy Larson");

// printing the result to the console
console.log(result);

// Output: QUINCY LARSON
Mehedi Islam Ripon

Respostas semelhantes a “converter string em maiúsculas”

Perguntas semelhantes a “converter string em maiúsculas”

Mais respostas relacionadas para “converter string em maiúsculas” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código