string uppercase only first letter code example
Example 1: first letter tuUppercase
const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string[0].toUpperCase() + string.slice(1)
Example 2: capitalize first carater js
String.prototype.capitalize = function() {
return this.charAt(0).toUpperCase() + this.slice(1)
}