Fork me on GitHub
摘要: 1.结构数组 function fast(){ return ['apple','orgin','big'] } //原始方式 let arry = fast(); let a = arry[0]; //es6 let [a,b,c] = fast(); console.log(a) // appl 阅读全文
posted @ 2020-04-08 22:45 欢欢11 阅读(184) 评论(0) 推荐(0) 编辑