“do szczytu JS” Kod odpowiedzi

JavaScript wielki

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

Kapitalizuj w JavaScript

const name = 'flavio'
const nameCapitalized = name.charAt(0).toUpperCase() + name.slice(1)
Anxious Anteater

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

Tabelercase JavaScript Array

const names = ['Ali', 'Atta', 'Alex', 'John'];

const uppercased = names.map(name => name.toUpperCase());

console.log(uppercased);

// ['ALI', 'ATTA', 'ALEX', 'JOHN']
Gifted Goose

do szczytu JS

var string = "A string";

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

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

Odpowiedzi podobne do “do szczytu JS”

Pytania podobne do “do szczytu JS”

Więcej pokrewnych odpowiedzi na “do szczytu JS” w JavaScript

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

Przeglądaj inne języki kodu