Capitalize the first letter of a word

PHOTO EMBED

Tue Feb 01 2022 04:51:07 GMT+0000 (Coordinated Universal Time)

Saved by @aguest #javascript

function capitalizeFirstLetter(word) {
	return word.charAt(0).toUpperCase() + word.slice(1);
}
content_copyCOPY