9
1
10
834
0
字符串转数组 let string = "12345,56789"string.split(',') // ['12345','56789'] 数组转字符串 let arra...