对象的解构赋值

编程练习

字符串的分解

let str ="you  and me"

let str1 = str.split("")
let [...str2] = str
let str3 = [...str]


原文地址:https://www.cnblogs.com/daixixi/p/11049072.html