一、数组转字符串1、array.join(separator)可以通过自定义分隔符(如空格等)来分隔数组编变成字符串,默认以逗号分隔
// 数组转换为字符串
var arr3 = [1, 2, 3, 4]
// array.join(sep
2022-10-31