1、描述
此方法返回转换为大写的字符串值。
2、语法
它的语法如下:
string.toUpperCase()
3、返回值
返回表示指定对象的字符串。
4、使用示例
<html>
<head>
<title>JavaScript String toUpperCase() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "https://www.cjavapy.com c java py cjavapy";
document.write(str.toUpperCase());
</script>
</body>
</html>
5、输出
HTTPS://WWW.CJAVAPY.COM C JAVA PY CJAVAPY