📅  最后修改于: 2023-12-03 14:44:03.128000             🧑  作者: Mango
Lodash是一个著名的JavaScript工具库,提供了丰富的方法和函数,可简化JavaScript代码的编写,增加代码的可读性和可维护性。
在Lodash中,有一个 _.toLower() 方法,可以将字符串转换为小写字母。
_.toLower([string=''])
[string='']
:要转换的字符串。返回一个新的字符串,转换为小写字母后的字符串。
下面是一个简单的示例,使用了 _.toLower() 方法:
const lodash = require('lodash');
const str = 'Hello World';
const lowerStr = lodash.toLower(str);
console.log(lowerStr); // 'hello world'
以上就是Lodash _.toLower() 方法的介绍,希望对程序员们有所帮助!