“Konwertuj ciąg na wielki poziom” Kod odpowiedzi

JavaScript wielki

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

String Upperce


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

Konwertuj ciąg na wielki poziom

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 ciąg na wielki poziom”

Pytania podobne do “Konwertuj ciąg na wielki poziom”

Więcej pokrewnych odpowiedzi na “Konwertuj ciąg na wielki poziom” w JavaScript

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

Przeglądaj inne języki kodu