const string = "HeLLo woRld" const uppercased = string.toUpperCase() console.log(string) // HeLLo woRld console.log(uppercased) // HELLO WORLD