将数组中的所有元素转换为由 separator 分隔的字符串。
separator
需要转换的数组
分隔符
返回连接好的字符串
_.join(['a', 'b', 'c'], '~'); // => 'a~b~c'