Capitalize the first letter of a string, and make the rest lowercase.
The string to transform
The original string with all letters lowercase except the first which is capitalized
console.log(capitalizeFirstLetterOnly("WATER")); // prints "Water" Copy
console.log(capitalizeFirstLetterOnly("WATER")); // prints "Water"
Capitalize the first letter of a string, and make the rest lowercase.