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