Love beautiful code? We do too.
Phương thức String toLocaleUpperCase() trong JavaScript được sử dụng để biến đổi các ký tự trong một chuỗi thành kiểu chữ hoa trong khi tôn trọng Locale hiện tại. Với hầu hết Ngôn ngữ, nó trả về kết quả giống như toUpperCase.
Cú pháp của nó như sau:
string.toLocaleUpperCase( )
Trả về giá trị
<html>
<head>
<title>JavaScript String toLocaleUpperCase() Method</title>
</head>
<body>
<script type="text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toLocaleUpperCase( ));
</script>
</body>
</html>
Kết quả
APPLES ARE ROUND, AND APPLES ARE JUICY.
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời