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