how to turn ' of ' and ' and ' tolowercase in javascript code example
Example: javascript lowercase string
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"