To Lowercase

Creates a string with all Unicode letters from the original string mapped to their lower case.

Examples in JavaScript
var str = "Hello World!";
console.log(str.toLowerCase());