跳到主要内容

js 基础

  • 字符串转数组
const str = 'abc'
const array = str.split(',')
  • 数组转字符串
const array = ['a']
const str = array.join(',')