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