“JavaScript wielki” Kod odpowiedzi

JavaScript wielki

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

JavaScript wielki

let str = "Hello World!";
let res = str.toUpperCase();  
console.log(res) //HELLO WORLD!
Caffeinated Developer

do Capital Case JavaScript

const toCapitalCase = (string) => {
    return string.charAt(0).toUpperCase() + string.slice(1);
};
David Diamant

JS do wielkiego poziomu

var string = "A string";

var upperCase = string.toUpperCase();
console.log(upperCase); // -> A STRING

var lowerCase = string.toLowerCase();
console.log(lowerCase); // -> a string
MattDESTROYER

JS. TOUPPERSASE

.toUpperCase()

// Like this:
alert("In upper case: " + "my string".toUpperCase()); // In upper case: MY STRING
Code Cat

JavaScript wielki

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

Pytania podobne do “JavaScript wielki”

Więcej pokrewnych odpowiedzi na “JavaScript wielki” w JavaScript

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

Przeglądaj inne języki kodu