Answers for "how to set first letter in string to upper case and return the whole string js"

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

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 "how to set first letter in string to upper case and return the whole string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language