Love beautiful code? We do too.
Phương thức String localeCompare() trong JavaScript trả về một số chỉ dẫn có hay không một chuỗi tham chiếu ở trước hoặc sau hoặc giống với chuỗi đã cho trong thứ tự đã phân loại.
Cú pháp cho phương thức localeCompare() là:
string.localeCompare( param )
Chi tiết về tham số
Trả về giá trị
<html>
<head>
<title>JavaScript String localeCompare() Method</title>
</head>
<body>
<script type="text/javascript">
var str1 = new String( "This is beautiful string" );
var index = str1.localeCompare( "XYZ" );
document.write("localeCompare first :" + index );
document.write("<br />" );
var index = str1.localeCompare( "AbCD ?" );
document.write("localeCompare second :" + index );
</script>
</body>
</html>
Kết quả
localeCompare firs``t :-1 localeCompare second :1
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời