“małe do wielkiego poziomu w JavaScript” Kod odpowiedzi

JavaScript wielki

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

wielkie i małe litery w JS

str.toLowerCase()
str.toUpperCase()
Blue Badger

małe do wielkiego poziomu w 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

Odpowiedzi podobne do “małe do wielkiego poziomu w JavaScript”

Pytania podobne do “małe do wielkiego poziomu w JavaScript”

Więcej pokrewnych odpowiedzi na “małe do wielkiego poziomu w JavaScript” w JavaScript

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

Przeglądaj inne języki kodu