Answers for "first letter capitallise"

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
0

string capitalize first letter

string_name.capitalize() 

string_name: It is the name of string of
             whose first character we want
             to capitalize.
Posted by: Guest on August-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language