如何在 JavaScript 中连接多个字符串?
要连接多个字符串,请使用 “Array.join()” 方法。我们将在下面连接以下字符串
John Amit Sachin
示例
您可以尝试运行以下代码来连接多个字符串
<html> <body> <script> var arr = ['Amit', 'John', 'Sachin']; document.write(arr.join(', ')); </script> </body> </html>
广告
要连接多个字符串,请使用 “Array.join()” 方法。我们将在下面连接以下字符串
John Amit Sachin
您可以尝试运行以下代码来连接多个字符串
<html> <body> <script> var arr = ['Amit', 'John', 'Sachin']; document.write(arr.join(', ')); </script> </body> </html>