Appearance
_.toLower() 方法将字符串转换为小写。
_.toLower()
string
(string): 返回转换后的小写字符串。
const result = _.toLower("Hello World"); console.log(result); // => 'hello world'
在这个示例中,字符串 'Hello World' 被转换为小写,结果为 'hello world'。
'Hello World'
'hello world'