JavaScript String - méthode concat ()

La description

Cette méthode ajoute deux chaînes ou plus et renvoie une nouvelle chaîne unique.

Syntaxe

Sa syntaxe est la suivante -

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

Détails de l'argument

string2...stringN - Ce sont les chaînes à concaténer.

Valeur de retour

Renvoie une seule chaîne concaténée.

Exemple

Essayez l'exemple suivant.

<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>

Production

Concatenated String :This is string oneThis is string two.