Love beautiful code? We do too.
Phương thức String toLocaleLowerCase() trong JavaScript được sử dụng để biến đổi các ký tự trong một chuỗi thành kiểu chữ thường 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ư toLowerCase.
Cú pháp của nó là:
string.toLocaleLowerCase( )
Trả về giá trị
<html>
<head>
<title>JavaScript String toLocaleLowerCase() Method</title>
</head>
<body>
<script type="text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toLocaleLowerCase( ));
</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