如何在JavaScript中串联几个字符串?

要连接多个字符串,请使用“ Array.join()”方法。在这里,我们将连接以下字符串:

John
Amit
Sachin

示例

您可以尝试运行以下代码来连接多个字符串

<html>
   <body>
      <script>
         var arr = ['Amit', 'John', 'Sachin'];
         document.write(arr.join(', '));
       </script>
   </body>
</html>