ES6 - toUpperCase()



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

语法

string.toUpperCase()  

返回值

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

实例

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

输出

APPLES ARE ROUND, AND APPLES ARE JUICY.  
广告位