728x90
const arr = Array(100).fill()
console.log(arr); // [ undefined,undefined,undefined,undefined,undefined ...]
console.log(arr.length); // 100
const arr = Array(10).fill('👍')// ['👍','👍','👍','👍','👍','👍','👍','👍','👍','👍']
숫자만큼 1부터 숫자까지 배열 만들기
const arr2 = Array(10).fill().map((_, i) => i+ 1)
console.log(arr2); // [1,2,3,4,5,6,7,8,9,10]
728x90
'자바스크립트' 카테고리의 다른 글
[Javascript] for문에서 let과 var의 동작 분석 (2) | 2022.11.03 |
---|---|
[Axios] json이 아닌 파일통신 받는 법 (0) | 2022.10.20 |
[jest] TypeError: Cannot read property 'components' of undefined (0) | 2022.10.05 |
[Javascript] 메서드? 함수? (0) | 2022.09.28 |
[Javascript]Context란? (0) | 2022.09.28 |
댓글