Lodash - startCase 方法



语法

_.startCase([string=''])

将字符串转换为首字母大写。

参数

  • [string=''] (string) − 要转换的字符串。

输出

  • (string) − 返回首字母大写的字符串。

示例

var _ = require('lodash');
var result = _.startCase('foo bar');

console.log(result);

将以上程序保存在 tester.js 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

Foo Bar
lodash_string.htm
广告