본문 바로가기

언어/JavaScript

Array.from()

반응형

MDN Web Docs를 그대로 필사한 포스팅입니다.

 

Array. from() 메서드는 유사 배열 객체(array-like object)나 반복 가능한 객체(iterable object)를 얕게 복사해 새로운 Array 객체를 만듭니다.

 

console.log(Array.from('foo'));
// expected output: Array ["f", "o", "o"]

console.log(Array.from([1, 2, 3], x => x + x));
// expected output: Array [2, 4, 6]

 

구문

Array.from(arrayLike[, mapFn[, thisArg]])

 

매개변수

arrayLike

배열로 변환하고자 하는 유사배열 객체나 반복 가능한 객체

 

mapFn [Optional]

배열의 모든 요소에 대해 호출할 맵핑 함수

 

thisArg [Optional]

mapFn 실행 시에 this로 사용할 값

 

반환값

새로운 Array 인스턴스

 

설명

다음과 같은 경우에 Array.from()으로 새 Array를 만들 수 있습니다.

  • 유사 배열 객체 (length 속성과 인덱싱된 요소를 가진 객체)
  • 순회 가능한 객체 (Map, Set 등 객체의 요소를 얻을 수 있는 객체)

Array.from()은 선택 매개변수인 mapFn을 가지는데, 배열(혹은 배열 서브클래스)의 각 요소를 맵핑할 때 사용할 수 있습니다. 즉, Array.from(obj, mapFn, thisArg)는 중간에 다른 배열을 생성하지 않는다는 점을 제외하면 Array.from(obj).map(mapFn, thisArg)와 같습니다. 이 특징은 typed arrays와 같은 특정 배열 서브클래스에서 중간 배열 값이 적절한 유형에 맞게 생략되기 때문에 특히 중요합니다.

 

from() 메서드의 length 속성은 1입니다.

 

ES2015 이후, 클래스 구문은 내장 및 새 클래스의 상속을 가능케 했습니다. 그 결과로 Array.from과 같은 정적 메서드는 Array의 서브클래스에 의해 상속되며, Array 대신 자신의 인스턴스를 만듭니다.

 

예제

String에서 배열 만들기

Array.from('foo');
// ["f", "o", "o"]

 

Set에서 배열 만들기

const s = new Set(['foo', window]);
Array.from(s);
// ["foo", window]

 

Map에서 배열 만들기

const m = new Map([1, 2], [2, 4], [4, 8]);
Array.from(m);
// [[1, 2], [2, 4], [4, 8]]

const mapper = new Map([['1', 'a'], ['2', 'b']]);
Array.from(mapper.values());
// ['a', 'b'];

Array.from(mapper.keys());
// ['1', '2'];

 

배열 형태를 가진 객체(arguments)에서 배열 만들기

function f() {
  return Array.from(arguments);
}

f(1, 2, 3);

// [1, 2, 3]

 

Array.from과 화살표 함수 사용하기

// Using an arrow function as the map function to
// manipulate the elements
Array.from([1, 2, 3], x => x + x);
// [2, 4, 6]

// Generate a sequence of numbers
// Since the array is initialized with `undefined` on each position,
// the value of `v` below will be `undefined`
Array.from({length: 5}, (v, i) => i);
// [0, 1, 2, 3, 4]

 

시퀀스 생성기(range)

// Sequence generator function (commonly reffered to as "range", e.g. Clojure, PHP etc)
const range = (start, stop, step) => Array.from({ length: (stop - start) / step + 1 }, (_, i) => start + (i * step));

// Generate numbers range 0..4
range(0, 4, 1);
// [0, 1, 2, 3, 4]

// Generate numbers range 1..10 with step of 2
range(1, 10, 2);
// [1, 3, 5, 7, 9]

// Generate the alphabet using Array.from making use of it being ordered as a sequence
range('A'.charCodeAt(0), 'Z'.charCodeAt(0), 1).map(x => String.fromCharCode(x));
// ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
반응형

'언어 > JavaScript' 카테고리의 다른 글

Document  (0) 2021.05.13
Node.js로 입력값 받기  (0) 2021.05.01
맵과 셋  (0) 2021.04.17
Map  (0) 2021.04.14
정규표현식 사용하기  (0) 2021.04.02