Miêu tả

Phương thức này so khớp hai hoặc nhiều chuỗi và trả về một chuỗi đơn mới.

Cú pháp

Cú pháp của nó như sau:

string.concat(string2, string3[, ..., stringN]);

Chi tiết về tham số

string2...stringN − Là các chuỗi để được so khớp với nhau.

Trả về giá trị

Trả về một chuỗi đã so khớp đơn.

Ví dụ

Bạn thử ví dụ sau:

<html>
   <head>
      <title>JavaScript String concat() Method</title>
   </head>
   
   <body>
   
      <script type="text/javascript">
         var str1 = new String( "This is string one" );
         var str2 = new String( "This is string two" );
         var str3 = str1.concat( str2 );
      
         document.write("Concatenated String :" + str3); 
      </script>
      
   </body>
</html>

Kết quả

Concatenated String :This is string oneThis is string two.

Các bài học JavaScript khác tại s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday