“Konwertuj JavaScript String” Kod odpowiedzi

JavaScript wielki

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

Konwertuj JavaScript String

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

Odpowiedzi podobne do “Konwertuj JavaScript String”

Pytania podobne do “Konwertuj JavaScript String”

Więcej pokrewnych odpowiedzi na “Konwertuj JavaScript String” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu