const string = "HeLLo woRld" const lowercased = string.toLowerCase() console.log(string) // HeLLo woRld console.log(lowercased) // hello world