Answers for "capitalize first letter of a string"

32

javascript capitalize first letter

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Posted by: Guest on March-04-2020
1

js capitalize first letter

// this will only capitalize the first word
var name = prompt("What is your name");
firstLetterUpper = name.slice(0,1).toUpperCase();

alert("Hello " + firstLetterUpper + name.slice(1, name.length).toLowerCase());
Posted by: Guest on May-10-2021
1

make first letter uppercase

const publication = "freeCodeCamp";
publication[0].toUpperCase() + publication.substring(1);
Posted by: Guest on December-27-2020

Code answers related to "capitalize first letter of a string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language