const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED." const string = string[0].toUpperCase() + string.slice(1)