Answers for "Should take a string of one word, and return the word with its first letter capitalized""

0

js capitalize word

const capitalizeFirstLetter(string) => 
	string.charAt(0).toUpperCase() + string.slice(1).toLowerCase()
Posted by: Guest on December-27-2020

Code answers related to "Should take a string of one word, and return the word with its first letter capitalized""

Code answers related to "Javascript"

Browse Popular Code Answers by Language