javascript lowercase string

JavaScript
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"var str = "Hello World!";
var res = str.toLowerCase();var str = "ExaMple";
var res = str.toLowerCase();
output res -> "example"
Source

Also in JavaScript: