index.js
const list = [1, , 3]; Array.apply(null, list); // [1, undefined, 3] [...list]; // [1, undefined, 3]
posted on 2021-09-10 10:11 aisowe 阅读(151) 评论(0) 编辑 收藏 举报