摘要: 扩展运算符 ... 扩展运算符能将 数组 转换为逗号分隔的 序列参数。 const person = ['易烊千玺', '王俊凯', '王源']; let test = (...args) => { console.log(args) } function test() { console.log( 阅读全文
posted @ 2022-02-17 00:19 HuangBingQuan 阅读(333) 评论(0) 推荐(0) 编辑