Answers for "method to capitalize the first letter of 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
4

java method to capitalize first letter

String str = "java";
String cap = str.substring(0, 1).toUpperCase() + str.substring(1);
// cap = "Java"
Posted by: Guest on May-04-2020
4

capitalise first letter js

const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string.charAt(0).toUpperCase() + string.slice(1)
Posted by: Guest on September-03-2020

Code answers related to "method to capitalize the first letter of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language