1
2
3
4
5
6
7
8
9
10
11
// 빈배열 만들기
const emptyArray1 = Array.from({ length: 3 });
console.log(emptyArray1); // [undefined, undefined, undefined]
// 빈배열 만들고 채우기1
const emptyArray2 = Array.from({ length: 3 }).map((item, index) => index);
console.log(emptyArray2); // [0, 1, 2]
// 빈배열 만들고 채우기2
const emptyArray3 = Array.from({ length: 3 }, (item, index) => index);
console.log(emptyArray3); // [0, 1, 2]
빈 배열 만들기
This post is licensed under CC BY 4.0 by the author.