此方法返回转换为大写的调用字符串值。
string.toUpperCase()
返回表示指定对象的字符串。
var str = "Apples are round, and Apples are Juicy."; console.log(str.toUpperCase( ));
APPLES ARE ROUND, AND APPLES ARE JUICY.