第473天 使用js写一个方法生成0000-9999一万个数字(4位数)
3+1官网
我也要出题
Array.from({ length: 10000 }, (_, i) => `${i}`.padStart(4, 0));
Most helpful comment