Lodash _.upperFirst() 方法
_.upperFirst()方法用于将字符串的第一个字符转换为大写。
句法:
_.upperFirst( [string = ''])
参数:此方法接受如上所述和如下所述的单个参数:
- 字符串:此参数保存要转换的字符串。
返回值:该方法返回转换后的字符串。
下面的示例说明了 JavaScript 中的 Lodash _.upperFirst() 方法:
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.upperFirst() method
console.log(_.upperFirst('geeks-For-geeks'));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.upperFirst() method
console.log(_.upperFirst('GEEKS FOR GEEKS'));
输出:
'Geeks-For-geeks'
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.upperFirst() method
console.log(_.upperFirst('GEEKS FOR GEEKS'));
输出:
'GEEKS FOR GEEKS'