Lodash - toUpper 方法
语法
_.toUpper([string=''])
将字符串整体转换为大写,就像 String#toUpperCase 一样。
参数
[string=''] (字符串) - 要转换的字符串。
输出
(字符串) - 返回转换后的字符串。
示例
var _ = require('lodash'); var result = _.toUpper('fooBar'); console.log(result);
将以上程序保存为 tester.js。运行以下命令以执行此程序。
命令
\>node tester.js
输出
FOOBAR
lodash_string.htm
广告