Skip to content

使用js生成1-10000的数组

Posted on:2021年12月26日 at 22:26

实现的方法很多,除了使用循环(for,while,forEach等)外,最简单的是使用Array.from

// 方法一
Array.from(new Array(10001).keys()).slice(1);

// 方法二
Array.from({ length: 10000 }, (node, i) => i + 1);
原文转自:https://fe.ecool.fun/topic/fd0bb7e5-19a0-4473-8b07-4f0e385afd3c