如何不使用loop循環建立連續的數組

ES5
Array.apply(null,{length:100})
Object.keys(Array.apply(null,{length:100}));

ES6
[...Array(100)]
相關文章
相關標籤/搜索