“JavaScript mengubah huruf pertama menjadi huruf besar” Kode Jawaban

JavaScript huruf besar huruf pertama

//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

JavaScript mengkapitalisasi huruf pertama

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Helpless Horse

kembalikan huruf pertama string javascript dalam huruf besar

function capitalizeFirstLetter(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

console.log(capitalizeFirstLetter('foo')); // Foo
Xerothermic Xenomorph

huruf pertama tuuppercase

const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string[0].toUpperCase() + string.slice(1)
putsan

JS SURAT PERTAMA untuk huruf besar

function capitalizeFirstLetter(name) {
    return name.replace(/^./, name[0].toUpperCase())
}
Combative Crayfish

JavaScript mengubah huruf pertama menjadi huruf besar

const name = 'flavio'
const nameCapitalized = name.charAt(0).toUpperCase() + name.slice(1)
Itchy Iguana

Jawaban yang mirip dengan “JavaScript mengubah huruf pertama menjadi huruf besar”

Pertanyaan yang mirip dengan “JavaScript mengubah huruf pertama menjadi huruf besar”

Lebih banyak jawaban terkait untuk “JavaScript mengubah huruf pertama menjadi huruf besar” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya