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