Snippetz
All Snippets
Login
Register
titleCase
tkyleb
/
titleCase.js
Created February 8, 2025
function
titleCase
(
str
) {
return
str
.
charAt
(
0
).
toUpperCase
()
+
str
.
slice
(
1
)
}
Returns a string with the first letter capitilized