“Converter String JavaScript” Respostas de código

JavaScript em maiúsculas

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

Converter String JavaScript

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 JavaScript”

Perguntas semelhantes a “Converter String JavaScript”

Mais respostas relacionadas para “Converter String JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código