TypeScript - String toUpperCase() 方法


此方法返回转换为大写的调用字符串值。

语法

string.toUpperCase( )

返回值

返回表示指定对象的字符串。

示例

var str = "Apples are round, and Apples are Juicy."; 
console.log(str.toUpperCase( ));

编译时,它将在 JavaScript 中生成相同的代码。

其输出如下 −

APPLES ARE ROUND, AND APPLES ARE JUICY.

typescript_strings.html