1.定义和用法 join() 方法把数组中的所有元素用指定的参数作为分隔符拼接成一个字符串。 语法: array.join(separator) 举例:var arr = [1,2,3,4,5]; console.log(arr.join('$')); 输出: