Write Your JavaScript Code Here

// toLowerCase(): method used to convert the string into lowercase letter and doesn't change the original string let srt1="THE THING YOU NEVER SEEN BEFORE"; let srt2=srt1.toLowerCase(); console.log(srt1); console.log(srt2);

Output: