给定一个包含数组元素的数组,在这里我们将连接所有数组元素以形成单个字符串。要连接数组元素,我们使用 arr.join() 方法。此方法用于将数组的元素连接成字符串。字符串的元素将由指定的分隔符分隔,其默认值为逗号(,)。
句法:
array.join(separator)
在这种情况下,我们使用空分隔符即 array.join(“”) 来连接数组元素。
例子:
HTML
How to create a string by joining the
elements of an array in JavaScript?
GeeksforGeeks
How to create a string by joining the
elements of an array in JavaScript?
Original Array: ["Welcome", "Geeks", "for", "Geeks"]
输出: