⌨️ 开发笔记Javascriptjs 基础js 基础 字符串转数组 const str = 'abc'const array = str.split(',') 数组转字符串 const array = ['a']const str = array.join(',')