programming/javascript
배열 1부터 100까지 값 넣기
FaustK
2021. 1. 31. 17:26
배열에 1부터 100까지 값을 넣고 싶을 때 신박한 방법이 있다.
const arr = Array(100).fill().map((v,i)=> i+1);
[1,2,3,....99,100]
^^