JS String Prototype ToLowerCase - ashish9342/FreeCodeCamp GitHub Wiki
The JavaScript method .toLowerCase() returns the same string it was called on, but in all lower case.
Syntax
str.toLowerCase()console.log("HELLO WORLD".toLowerCase()); // Console will output "hello world"Source MDN