“wielki poziom w słowa javascript” Kod odpowiedzi

JavaScript kapitalizuje słowa

//capitalize only the first letter of the string. 
function capitalizeFirstLetter(string) {
    return string.charAt(0).toUpperCase() + string.slice(1);
}
//capitalize all words of a string. 
function capitalizeWords(string) {
    return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
Grepper

Ciąg wielki w JS

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

wielki poziom w słowa javascript

function toTitleCase(str) {
    return str.replace(/\w\S*/g, function(txt){
        return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
    });
}
Clever Caracal

JavaScript kapitalizuje słowa

//Updated 
//capitalize only the first letter of the string. 
function capitalizeFirstLetter(string) {
    return string.charAt(0).toUpperCase() + string.slice(1);
}
//capitalize all words of a string. 
function capitalizeWords(string) {
    return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
rabbit.sol

Odpowiedzi podobne do “wielki poziom w słowa javascript”

Pytania podobne do “wielki poziom w słowa javascript”

Więcej pokrewnych odpowiedzi na “wielki poziom w słowa javascript” w JavaScript

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

Przeglądaj inne języki kodu