如何将 JavaScript 字符串值转换为全部小写字母?
示例:"Your Name"到"your name"
"Your Name"
"your name"
var lowerCaseName = "Your Name".toLowerCase();